		/* ==================================================================
		   pengganti css.php + w3.css bagian dasar
		   ================================================================== */
		*, *::before, *::after { box-sizing: border-box; }
		html { height: 100%; scroll-behavior: smooth; }
		
		body {
			height: 100%;
			margin: 0;
			padding: 0;
			background: #0f1419;
			color: #e5e7eb;
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', 'Helvetica Neue', Arial, sans-serif;
			font-size: 16px;
			line-height: 1.5;
			-webkit-font-smoothing: antialiased;
			-moz-osx-font-smoothing: grayscale;
			display: block;           /* override flex-column dari css.php */
			flex-direction: column;
			min-height: 100vh;
			padding-top: 64px;
		}

		img { max-width: 100%; height: auto; vertical-align: middle; border-style: none; }
		a { color: inherit; text-decoration: none; }
		button { font-family: inherit; cursor: pointer; }
		input, textarea, select { font-family: inherit; font-size: inherit; }
		
		.cf-turnstile { margin: 0 auto; }
		
		/* ==================================================================
		   NAVBAR
		   ================================================================== */
		.ff-navbar {
			position: fixed;
			top: 0; left: 0; right: 0;
			height: 60px;
			background: rgba(26, 35, 50, 0.85);
			backdrop-filter: blur(12px);
			-webkit-backdrop-filter: blur(12px);
			border-bottom: 1px solid #2d3b4e;
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 0 20px;
			z-index: 3;
		}
		.ff-brand-btn {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			padding: 10px 16px;
			background: #243040;
			border-radius: 12px;
			transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
			border: 1px solid transparent;
		}
		.ff-brand-btn:hover { border-color: #3a7bd5; transform: translateY(-1px); }
		.ff-gradient-text {
			background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
			-webkit-background-clip: text;
			background-clip: text;
			-webkit-text-fill-color: transparent;
			color: transparent;
			font-weight: 700;
			font-size: 14px;
		}

		/* User dropdown */
		.ff-user-menu { position: relative; }
		.ff-user-toggle {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			padding: 10px 16px;
			background: #243040;
			border-radius: 12px;
			border: 1px solid transparent;
			color: #e5e7eb;
			transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
			font-size: 14px;
		}
		.ff-user-toggle:hover { border-color: #3a7bd5; }
		.ff-user-dropdown {
			position: absolute;
			top: calc(100% + 8px);
			right: 0;
			min-width: 180px;
			background: #1e2836;
			border: 1px solid #2d3b4e;
			border-radius: 12px;
			padding: 8px;
			opacity: 0;
			visibility: hidden;
			transform: translateY(-8px);
			transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
			box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
		}
		.ff-user-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
		.ff-user-dropdown a {
			display: flex;
			align-items: center;
			gap: 10px;
			padding: 10px 12px;
			color: #e5e7eb;
			border-radius: 8px;
			font-size: 14px;
			transition: 0.2s;
		}
		.ff-user-dropdown a:hover { background: #243040; }
		.ff-user-dropdown a.ff-danger:hover { color: #f87171; }

		/* ==================================================================
		   HERO
		   ================================================================== */
		.ff-hero {
			padding: 40px 20px 20px;
			text-align: center;
			max-width: 1200px;
			margin: 0 auto;
			//border:1px solid;
		}
		.ff-hero h1 {
			font-size: clamp(24px, 4vw, 36px);
			margin: 0 0 5px;
			background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
			-webkit-background-clip: text;
			background-clip: text;
			-webkit-text-fill-color: transparent;
			color: transparent;
			font-weight: 800;
			letter-spacing: -0.8px;
		}
		.ff-hero p { color: #9ca3af; font-size: clamp(13px, 1.5vw, 15px); margin: 0; }
		.ff-hero-badges {
			display: flex;
			gap: 10px;
			justify-content: center;
			flex-wrap: wrap;
			margin-top: 5px;
		}
		.ff-hero-badge {
			display: inline-flex;
			align-items: center;
			gap: 6px;
			padding: 6px 14px;
			background: #1a2332;
			border: 1px solid #2d3b4e;
			border-radius: 999px;
			font-size: 12px;
			color: #9ca3af;
		}
		.ff-hero-badge i { color: #00e676; }

		/* ==================================================================
		   MAIN CONTAINER
		   ================================================================== */
		.ff-main-wrap {
			max-width: 1200px;
			margin: 0 auto;
			padding: 0 20px 40px;
			display: block;
		}

		/* ==================================================================
		   SECTION TITLE
		   ================================================================== */
		.ff-section-title {
			display: flex;
			align-items: center;
			gap: 10px;
			font-size: 14px;
			font-weight: 700;
			letter-spacing: 0.5px;
			text-transform: uppercase;
			padding: 12px 18px;
			background: #1a2332;
			border: 1px solid #2d3b4e;
			border-radius: 12px;
			margin: 30px 0 16px;
			
		}
		.ff-section-title i { font-size: 18px; }
		.ff-section-title.ff-stars    { color: #60a5fa; }
		.ff-section-title.ff-diamonds { color: #c084fc; }
		.ff-section-title.ff-crowns   { color: #facc15; }
		.ff-section-title.ff-flames   { color: #f87171; }
		.ff-section-title.ff-premium  { color: #00d2ff; }

		/* ==================================================================
		   GRID PRODUK
		   ================================================================== */
		.ff-product-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
			gap: 10px;
		}
		.ff-item-card {
			position: relative;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			background: #1e2836;
			border: 1px solid #2d3b4e;
			border-radius: 12px;
			padding: 20px 12px;
			text-align: center;
			cursor: pointer;
			transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
			min-height: 150px;
		}
		.ff-item-card:hover {
			border-color: #3a7bd5;
			background: #243040;
			transform: translateY(-4px);
			box-shadow: 0 8px 24px rgba(58, 123, 213, 0.15);
		}
		.ff-item-icon {
			width: 52px; height: 52px;
			margin-bottom: 12px;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		.ff-item-icon img {
			width: 100%; height: 100%;
			object-fit: contain;
			transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
		}
		.ff-item-card:hover .ff-item-icon img { transform: scale(1.1); }
		.ff-item-label {
			font-size: 13px;
			color: #9ca3af;
			margin-bottom: 6px;
			font-weight: 500;
		}
		.ff-item-price {
			font-size: 14px;
			font-weight: 700;
			color: #00e676;
		}
		.ff-item-badge {
			position: absolute;
			top: 8px; right: 8px;
			background: linear-gradient(90deg, #f6d365, #fda085);
			color: #1a2332;
			font-size: 10px;
			font-weight: 800;
			padding: 3px 8px;
			border-radius: 999px;
			letter-spacing: 0.5px;
		}

		/* ==================================================================
		   GRID GIFTS
		   ================================================================== */
		.ff-gift-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
			gap: 5px;
			background: #1a2332;
			border: 1px solid #2d3b4e;
			border-radius: 16px;
			padding: 20px;
		}
		.ff-gift-card {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			padding: 5px 5px;
			border-radius: 10px;
			transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
			cursor: pointer;
			border: 1px solid #2d3b4e;
		}
		.ff-gift-card:hover { background: #243040; transform: translateY(-2px); }
		.ff-gift-card img {
			width: 50px; height: 44px;
			object-fit: contain;
			margin-bottom: 4px;
			transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
		}
		.ff-gift-card:hover img { transform: scale(1.12); }
		.ff-gift-points {
			font-size: 11px;
			color: #00e676;
			font-weight: 600;
			white-space: nowrap;
		}

		/* ==================================================================
		   MODAL (Sign In / Sign Up / Verify)
		   ================================================================== */
		.ff-loading-modal { display: none; position: fixed; inset: 0; z-index: 5; }
		.ff-modal {
			position: fixed;
			inset: 0;
			background: rgba(15, 20, 25, 0.50);
			backdrop-filter: blur(1px);
			-webkit-backdrop-filter: blur(1px);
			z-index: 4;
			display: flex;
			align-items: flex-start;
			justify-content: center;
			padding: 80px 20px 40px;
			overflow-y: auto;
			animation: ffModalFade 0.25s ease;
		}
		@keyframes ffModalFade { from { opacity: 0; } to { opacity: 1; } }

		.ff-modal-content {
			width: 100%;
			max-width: 460px;
			background: #1a2332;
			border: 1px solid #2d3b4e;
			border-radius: 16px;
			overflow: hidden;
			box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(58, 123, 213, 0.1);
			animation: ffModalSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		}
		@keyframes ffModalSlide {
			from { opacity: 0; transform: translateY(-20px) scale(0.98); }
			to   { opacity: 1; transform: translateY(0) scale(1); }
		}
		.ff-modal-sm { max-width: 420px; }

		.ff-modal-header {
			display: flex;
			align-items: center;
			background: #1e2836;
			border-bottom: 1px solid #2d3b4e;
			padding: 0 8px;
			position: relative;
		}
		.ff-modal-header-center {
			flex-direction: column;
			align-items: center;
			text-align: center;
			padding: 32px 28px 24px;
			background: linear-gradient(180deg, #1e2836 0%, #1a2332 100%);
		}
		.ff-tab {
			padding: 16px 20px;
			font-size: 14px;
			font-weight: 700;
			color: #9ca3af;
			cursor: pointer;
			position: relative;
			transition: color 0.25s ease;
			user-select: none;
			letter-spacing: 0.3px;
		}
		.ff-tab:hover { color: #e5e7eb; }
		.ff-tab-active { color: #e5e7eb; }
		.ff-tab-active::after {
			content: '';
			position: absolute;
			bottom: 0; left: 20px; right: 20px;
			height: 2px;
			background: linear-gradient(90deg, #00d2ff, #3a7bd5);
			border-radius: 2px 2px 0 0;
		}
		.ff-modal-close {
			margin-left: auto;
			width: 36px; height: 36px;
			display: flex;
			align-items: center;
			justify-content: center;
			background: transparent;
			border: none;
			color: #9ca3af;
			border-radius: 8px;
			font-size: 16px;
			transition: all 0.25s ease;
		}
		.ff-modal-close:hover {
			background: #243040;
			color: #f87171;
			transform: rotate(90deg);
		}
		.ff-modal-body { padding: 28px 28px 32px; }

		/* Field & input */
		.ff-field { position: relative; margin-bottom: 14px; }
		.ff-field-icon {
			position: absolute;
			left: 16px;
			top: 50%;
			transform: translateY(-50%);
			color: #6b7280;
			font-size: 16px;
			pointer-events: none;
			transition: color 0.25s ease;
		}
		.ff-field:focus-within .ff-field-icon { color: #00d2ff; }
		.ff-input {
			width: 100%;
			padding: 14px 16px 14px 44px;
			background: #0f1419;
			border: 1px solid #2d3b4e;
			border-radius: 10px;
			color: #e5e7eb;
			font-size: 14px;
			transition: all 0.25s ease;
			outline: none;
		}
		.ff-input::placeholder { color: #6b7280; }
		.ff-input:hover { border-color: #3a4a5e; }
		.ff-input:focus {
			border-color: #3a7bd5;
			box-shadow: 0 0 0 4px rgba(58, 123, 213, 0.15);
			background: #12181f;
		}

		/* Forgot link */
		.ff-forgot-wrap { display: flex; justify-content: flex-end; margin: -4px 0 20px; }
		.ff-forgot {
			font-size: 13px;
			color: #00d2ff;
			cursor: pointer;
			border-bottom: 1px dashed rgba(0, 210, 255, 0.4);
			padding-bottom: 1px;
			transition: all 0.25s ease;
		}
		.ff-forgot:hover { color: #3a7bd5; border-bottom-color: #3a7bd5; }

		/* Buttons */
		.ff-btn-primary {
			width: 100%;
			padding: 14px 24px;
			background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
			color: #fff;
			border: none;
			border-radius: 10px;
			font-size: 15px;
			font-weight: 700;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
			box-shadow: 0 4px 16px rgba(58, 123, 213, 0.35);
			letter-spacing: 0.3px;
		}
		.ff-btn-primary:hover {
			transform: translateY(-2px);
			box-shadow: 0 8px 24px rgba(58, 123, 213, 0.55);
			filter: brightness(1.08);
		}
		.ff-btn-ghost {
			width: 100%;
			padding: 12px 20px;
			background: transparent;
			color: #9ca3af;
			border: 1px solid #2d3b4e;
			border-radius: 10px;
			font-size: 14px;
			font-weight: 600;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
			margin-top: 10px;
		}
		.ff-btn-ghost:hover {
			background: rgba(248, 113, 113, 0.08);
			border-color: rgba(248, 113, 113, 0.4);
			color: #f87171;
			transform: translateY(-1px);
		}

		/* Lost password view */
		.ff-back {
			display: inline-flex;
			align-items: center;
			gap: 6px;
			font-size: 13px;
			color: #9ca3af;
			cursor: pointer;
			margin-bottom: 16px;
			padding: 6px 10px;
			margin-left: -10px;
			border-radius: 6px;
			transition: all 0.25s ease;
		}
		.ff-back:hover { color: #00d2ff; background: rgba(0, 210, 255, 0.08); }
		.ff-lost-title { font-size: 18px; font-weight: 700; color: #e5e7eb; margin-bottom: 8px; }
		.ff-lost-desc { font-size: 13px; color: #9ca3af; line-height: 1.6; margin-bottom: 20px; }

		/* Verify modal */
		.ff-verify-badge {
			width: 64px; height: 64px;
			border-radius: 50%;
			background: linear-gradient(135deg, #00d2ff, #3a7bd5);
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 28px;
			color: #fff;
			margin-bottom: 16px;
			box-shadow: 0 8px 24px rgba(58, 123, 213, 0.4);
			animation: ffBadgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		}
		@keyframes ffBadgePop {
			from { transform: scale(0); opacity: 0; }
			to   { transform: scale(1); opacity: 1; }
		}
		.ff-verify-title { margin: 0 0 6px; font-size: 20px; font-weight: 800; color: #e5e7eb; }
		.ff-verify-subtitle { margin: 0; font-size: 13px; color: #9ca3af; }
		.ff-field-code { margin-bottom: 20px; }
		.ff-input-code {
			text-align: center;
			font-size: 22px;
			font-weight: 800;
			letter-spacing: 8px;
			font-family: 'Courier New', monospace;
			padding: 16px 16px 16px 44px;
			background: #0f1419;
			color: #00d2ff;
			text-transform: uppercase;
		}
		.ff-input-code::placeholder { color: #3a4a5e; letter-spacing: 8px; }
		.ff-input-code:focus {
			border-color: #00d2ff;
			box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.15);
		}
		.ff-turnstile { margin: 16px 0 20px; display: flex; justify-content: center; }

		/* ==================================================================
		   WHATSAPP FLOAT
		   ================================================================== */
		.ff-wa-float {
			position: fixed;
			bottom: 24px; right: 24px;
			width: 56px; height: 56px;
			background: linear-gradient(135deg, #25D366, #128C7E);
			color: #fff;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 26px;
			box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
			transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
			z-index: 10;
			animation: ffWaPulse 2s infinite;
		}
		.ff-wa-float:hover {
			transform: scale(1.1) translateY(-2px);
			box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
		}
		@keyframes ffWaPulse {
			0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
			50%      { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
		}

		/* ==================================================================
		   FOOTER
		   ================================================================== */
		.ff-footer {
			border-top: 1px solid #2d3b4e;
			padding: 20px 20px;
			text-align: center;
			color: #9ca3af;
			font-size: 13px;
			line-height: 1.6;
		}
		.ff-footer a { color: #00d2ff; transition: 0.25s; }
		.ff-footer a:hover { color: #3a7bd5; }

		/* ==================================================================
		   RESPONSIVEa
		   ================================================================== */
		@media (max-width: 640px) {
			.ff-navbar { padding: 0 12px; }
			.ff-brand-btn, .ff-user-toggle { padding: 8px 12px; font-size: 13px; }
			.ff-gradient-text { font-size: 13px; }
			.ff-hero { padding: 32px 16px 24px; }
			.ff-main-wrap { padding: 0 12px 32px; }
			.ff-product-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
			.ff-item-card { padding: 16px 10px; min-height: 130px; }
			.ff-item-icon { width: 44px; height: 44px; }
			.ff-item-label { font-size: 12px; }
			.ff-item-price { font-size: 13px; }
			.ff-gift-grid { grid-template-columns: repeat(auto-fill, minmax(85px, 1fr)); padding: 14px; gap: 8px; }
			.ff-gift-card img { width: 36px; height: 36px; }
			.ff-gift-points { font-size: 10px; }
			.ff-section-title { font-size: 12px; padding: 10px 14px; }
			.ff-wa-float { width: 50px; height: 50px; font-size: 22px; bottom: 16px; right: 16px; }
			.ff-modal { padding: 60px 12px 20px; }
			.ff-modal-body { padding: 22px 20px 26px; }
			.ff-tab { padding: 14px 16px; font-size: 13px; }
			.ff-tab-active::after { left: 16px; right: 16px; }
			.ff-input { padding: 13px 14px 13px 42px; font-size: 13px; }
			.ff-field-icon { left: 14px; font-size: 15px; }
			.ff-btn-primary { padding: 13px 20px; font-size: 14px; }
		}

		@media (prefers-reduced-motion: reduce) {
			*, *::before, *::after {
				animation-duration: 0.01ms !important;
				transition-duration: 0.01ms !important;
			}
		}


.loader {
  height: 20px;
  width: 250px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.loader--dot {
  animation-name: loader;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background-color: black;
  position: absolute;
  border: 2px solid white;
}
.loader--dot:first-child {
  background-color: #8cc759;
  animation-delay: 0.5s;
}
.loader--dot:nth-child(2) {
  background-color: #8c6daf;
  animation-delay: 0.4s;
}
.loader--dot:nth-child(3) {
  background-color: #ef5d74;
  animation-delay: 0.3s;
}
.loader--dot:nth-child(4) {
  background-color: #f9a74b;
  animation-delay: 0.2s;
}
.loader--dot:nth-child(5) {
  background-color: #60beeb;
  animation-delay: 0.1s;
}
.loader--dot:nth-child(6) {
  background-color: #fbef5a;
  animation-delay: 0s;
}
.loader--text {
  position: absolute;
  top: 200%;
  left: 0;
  right: 0;
  width: 4rem;
  margin: auto;
}
.loader--text:after {
  content: "Loading";
  font-weight: bold;
  animation-name: loading-text;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(230px);
  }
  65% {
    transform: translateX(230px);
  }
  95% {
    transform: translateX(0);
  }
}
@keyframes loading-text {
  0% {
    content: "Loading";
  }
  25% {
    content: "Loading.";
  }
  50% {
    content: "Loading..";
  }
  75% {
    content: "Loading...";
  }
}
