/* ===========================
   DEMON STORE – STYLE.CSS
   Dark Theme | Orange & Yellow
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #ff6b00;
  --orange-light: #ff8c2a;
  --yellow: #ffc107;
  --yellow-light: #ffe066;
  --dark: #0a0a0f;
  --dark2: #12121a;
  --dark3: #1a1a27;
  --dark4: #22223a;
  --card-bg: rgba(26,26,39,0.85);
  --text: #f0f0f5;
  --text-muted: #8888aa;
  --border: rgba(255,107,0,0.18);
  --glow-orange: 0 0 30px rgba(255,107,0,0.35);
  --glow-yellow: 0 0 30px rgba(255,193,7,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--orange); }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 99px; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10,10,15,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { 
  display: flex; align-items: center; gap: 10px; 
  position: relative; z-index: 100000; /* tetap di atas overlay menu */
}
.logo-img { 
  width: clamp(28px, 6vw, 36px); 
  height: clamp(28px, 6vw, 36px); 
  border-radius: 50%; 
  object-fit: cover; 
  filter: drop-shadow(0 0 10px rgba(255,107,0,0.4)); 
}
.logo-text { font-size: clamp(16px, 5vw, 22px); font-weight: 800; letter-spacing: -0.5px; }

/* Hilangkan backdrop-filter saat menu mobile terbuka agar overlay tidak terpotong */
.navbar.nav-open { backdrop-filter: none; background: transparent; border-bottom-color: transparent; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange); border-radius: 99px;
  transform: scaleX(0); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Sembunyikan elemen khusus mobile di desktop */
.mobile-nav-header { display: none; }
.nav-overlay { display: none; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px; /* hilangkan padding kiri-kanan agar mengikuti .container */
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,107,0,0.12) 0%, transparent 70%),
              var(--dark);
}

.hero-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; gap: 40px; position: relative; z-index: 1;
}

.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25; animation: float 8s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: var(--orange); top: -150px; right: -100px; }
.orb2 { width: 350px; height: 350px; background: var(--yellow); bottom: -100px; left: -80px; animation-delay: -3s; }
.orb3 { width: 250px; height: 250px; background: var(--orange-light); top: 40%; left: 40%; animation-delay: -5s; }

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Background Particles */
.particle {
  position: absolute; border-radius: 50%; opacity: 0;
  pointer-events: none; z-index: 1; animation: floatParticle 10s linear infinite;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}
.p1 { width: 6px; height: 6px; background: #fff; left: 10%; bottom: -10%; animation-duration: 8s; }
.p2 { width: 10px; height: 10px; background: var(--yellow); left: 25%; bottom: -10%; animation-duration: 12s; animation-delay: 2s; }
.p3 { width: 8px; height: 8px; background: var(--orange); left: 40%; bottom: -10%; animation-duration: 10s; animation-delay: 4s; }
.p4 { width: 5px; height: 5px; background: #fff; left: 55%; bottom: -10%; animation-duration: 15s; animation-delay: 1s; }
.p5 { width: 12px; height: 12px; background: var(--yellow); left: 70%; bottom: -10%; animation-duration: 14s; animation-delay: 6s; }
.p6 { width: 7px; height: 7px; background: var(--orange); left: 85%; bottom: -10%; animation-duration: 9s; animation-delay: 3s; }
.p7 { width: 9px; height: 9px; background: #fff; left: 15%; bottom: -10%; animation-duration: 11s; animation-delay: 5s; }
.p8 { width: 6px; height: 6px; background: var(--yellow); left: 35%; bottom: -10%; animation-duration: 13s; animation-delay: 8s; }
.p9 { width: 11px; height: 11px; background: var(--orange); left: 60%; bottom: -10%; animation-duration: 16s; animation-delay: 0.5s; }
.p10 { width: 8px; height: 8px; background: #fff; left: 90%; bottom: -10%; animation-duration: 10s; animation-delay: 7s; }

@keyframes floatParticle {
  0% { transform: translateY(0) scale(1) rotate(0); opacity: 0; }
  20% { opacity: 0.5; }
  80% { opacity: 0.5; }
  100% { transform: translateY(-1000px) scale(0.5) rotate(360deg); opacity: 0; }
}

/* Sideways Rain */
.rain {
  position: absolute; width: 1.5px; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2));
  pointer-events: none; z-index: 1; animation: sidewaysRain 3s linear infinite;
}
.r1 { left: 10%; top: -100px; animation-delay: 0s; }
.r2 { left: 30%; top: -100px; animation-delay: 1s; }
.r3 { left: 50%; top: -100px; animation-delay: 2s; }
.r4 { left: 70%; top: -100px; animation-delay: 0.5s; }
.r5 { left: 90%; top: -100px; animation-delay: 1.5s; }
.r6 { left: 25%; top: -100px; animation-delay: 2.5s; }

@keyframes sidewaysRain {
  0% { transform: translate(0, 0) rotate(25deg); opacity: 0; }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% { transform: translate(500px, 1200px) rotate(25deg); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 640px;
  flex: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,0.15); border: 1px solid var(--orange);
  color: var(--orange-light); padding: 6px 16px; border-radius: 99px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(48px, 9vw, 90px);
  font-weight: 900; line-height: 1;
  margin-bottom: 8px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.fire-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 60%, #fff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255,107,0,0.5));
}
.hero-sub {
  color: var(--text); font-size: 0.85em; font-weight: 900;
  text-transform: uppercase; letter-spacing: 2px;
  opacity: 0.9;
}

.hero-desc {
  font-size: 16px; color: var(--text-muted); margin-bottom: 20px; max-width: 480px;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-desc strong { color: var(--yellow); }

.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px;
  animation: fadeUp 0.7s ease 0.3s both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 99px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #000; font-weight: 700; font-size: 15px;
  box-shadow: var(--glow-orange); transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 0 40px rgba(255,107,0,0.55); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 99px;
  background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.4);
  color: #25d366; font-weight: 700; font-size: 15px;
  transition: var(--transition);
}
.btn-wa:hover { background: rgba(37,211,102,0.25); transform: translateY(-2px); }

.wa-icon-sm { width: 20px; height: 20px; }

.hero-stats {
  display: flex; align-items: center; gap: 24px; margin-bottom: 24px;
  animation: fadeUp 0.7s ease 0.4s both;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-socials {
  display: flex; gap: 20px; margin-top: 24px;
  animation: fadeUp 0.7s ease 0.5s both;
}
.hero-social-item {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 24px;
  backdrop-filter: blur(10px);
}
.hero-social-item img { width: 32px; height: 32px; }
.hero-social-item:hover {
  transform: translateY(-5px) scale(1.1);
  background: rgba(255,255,255,0.1);
  box-shadow: var(--glow-orange); border-color: var(--orange);
}
.hero-social-item.wa:hover { box-shadow: 0 0 20px rgba(37,211,102,0.4); border-color: #25d366; }
.hero-social-item.ig:hover { box-shadow: 0 0 20px rgba(225,48,108,0.4); border-color: #ff5a82; }
.hero-social-item.tiktok:hover { box-shadow: 0 0 20px rgba(255,255,255,0.3); border-color: #fff; }

.hero-visual {
  position: relative; z-index: 1; flex: 1;
  display: flex; justify-content: center; align-items: center;
}
.hero-card-float {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; transform: rotate(-8deg);
}

/* ===== HERO FLOAT WRAPPER + SOCIAL ICONS ===== */
.hero-float-wrapper {
  position: relative;
  padding: 26px;       /* icon tepat di tepi card group, lurus dengan celah */
  display: inline-block;
}

.float-social {
  position: absolute;
  top: 0; left: 0;  /* semua posisi dikontrol via transform di keyframes */
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
  z-index: 10;
  font-size: 20px;
}
.float-social img { width: 22px; height: 22px; object-fit: contain; }

/* atas tengah — WhatsApp */
.fs-top  { border-color: rgba(37,211,102,0.35);  animation: orbitWA 20s linear infinite; }
/* kanan tengah — Instagram */
.fs-right{ border-color: rgba(225,48,108,0.35);  animation: orbitIG 20s linear infinite; }
/* bawah tengah — TikTok */
.fs-bottom{ border-color: rgba(255,255,255,0.2); animation: orbitTT 20s linear infinite; }
/* kiri tengah — Linktree */
.fs-left { border-color: rgba(255,107,0,0.35);   animation: orbitLT 20s linear infinite; }

/* Hover: visual glow saja — orbit TIDAK berhenti agar tidak numpuk */
.fs-top:hover    { background: rgba(37,211,102,0.2);  border-color: #25d366; box-shadow: 0 0 20px rgba(37,211,102,0.5);  scale: 1.2; }
.fs-right:hover  { background: rgba(225,48,108,0.2); border-color: #ff5a82; box-shadow: 0 0 20px rgba(225,48,108,0.5);  scale: 1.2; }
.fs-bottom:hover { background: rgba(255,255,255,0.1);border-color: #fff;    box-shadow: 0 0 20px rgba(255,255,255,0.3);scale: 1.2; }
.fs-left:hover   { background: rgba(255,107,0,0.2);  border-color: var(--orange); box-shadow: var(--glow-orange); scale: 1.2; }

/*
  Wrapper: 26px padding + 236px card area + 26px padding = 288px
  Icon 44px → offset positions (icon top-left corner):
    Top    = translate(122px,   0px)  → center di (144, 22) = lurus dengan gap vertical x=144
    Right  = translate(244px, 122px)  → center di (266,144) = lurus dengan gap horizontal y=144
    Bottom = translate(122px, 244px)
    Left   = translate(  0px, 122px)
*/
@keyframes orbitWA {
  0%,3.75%        { transform: translate(122px,  0px)   rotate(0deg); }
  11.25%,28.75%   { transform: translate(244px,122px)   rotate(90deg); }
  36.25%,53.75%   { transform: translate(122px,244px)   rotate(180deg); }
  61.25%,78.75%   { transform: translate(  0px,122px)   rotate(270deg); }
  86.25%,100%     { transform: translate(122px,  0px)   rotate(360deg); }
}
@keyframes orbitIG {
  0%,3.75%        { transform: translate(244px,122px)   rotate(0deg); }
  11.25%,28.75%   { transform: translate(122px,244px)   rotate(90deg); }
  36.25%,53.75%   { transform: translate(  0px,122px)   rotate(180deg); }
  61.25%,78.75%   { transform: translate(122px,  0px)   rotate(270deg); }
  86.25%,100%     { transform: translate(244px,122px)   rotate(360deg); }
}
@keyframes orbitTT {
  0%,3.75%        { transform: translate(122px,244px)   rotate(0deg); }
  11.25%,28.75%   { transform: translate(  0px,122px)   rotate(90deg); }
  36.25%,53.75%   { transform: translate(122px,  0px)   rotate(180deg); }
  61.25%,78.75%   { transform: translate(244px,122px)   rotate(270deg); }
  86.25%,100%     { transform: translate(122px,244px)   rotate(360deg); }
}
@keyframes orbitLT {
  0%,3.75%        { transform: translate(  0px,122px)   rotate(0deg); }
  11.25%,28.75%   { transform: translate(122px,  0px)   rotate(90deg); }
  36.25%,53.75%   { transform: translate(244px,122px)   rotate(180deg); }
  61.25%,78.75%   { transform: translate(122px,244px)   rotate(270deg); }
  86.25%,100%     { transform: translate(  0px,122px)   rotate(360deg); }
}

.float-card {
  width: 110px; height: 110px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 48px; backdrop-filter: blur(10px);
  box-shadow: var(--glow-orange);
  transition: box-shadow 0.3s ease;
}

/* 🔥 Kiri-Atas: mencar ke kiri-atas */
.float-card:nth-child(1) { animation: scatterTL 5s cubic-bezier(0.4,0,0.2,1) infinite; }
/* 💎 Kanan-Atas: mencar ke kanan-atas */
.float-card:nth-child(2) { animation: scatterTR 5s cubic-bezier(0.4,0,0.2,1) infinite; }
/* ⚔️ Kiri-Bawah: mencar ke kiri-bawah */
.float-card:nth-child(3) { animation: scatterBL 5s cubic-bezier(0.4,0,0.2,1) infinite; }
/* 🏆 Kanan-Bawah: mencar ke kanan-bawah */
.float-card:nth-child(4) { animation: scatterBR 5s cubic-bezier(0.4,0,0.2,1) infinite; }

@keyframes scatterTL {
  0%, 15%  { transform: translate(0,0) scale(1) rotate(0deg); opacity: 1; }
  45%      { transform: translate(130px,130px) scale(0.75) rotate(20deg); opacity: 0.5; }
  60%      { transform: translate(130px,130px) scale(0.75) rotate(20deg); opacity: 0.5; }
  88%, 100%{ transform: translate(0,0) scale(1) rotate(0deg); opacity: 1; }
}
@keyframes scatterTR {
  0%, 15%  { transform: translate(0,0) scale(1) rotate(0deg); opacity: 1; }
  45%      { transform: translate(-130px,130px) scale(0.75) rotate(-20deg); opacity: 0.5; }
  60%      { transform: translate(-130px,130px) scale(0.75) rotate(-20deg); opacity: 0.5; }
  88%, 100%{ transform: translate(0,0) scale(1) rotate(0deg); opacity: 1; }
}
@keyframes scatterBL {
  0%, 15%  { transform: translate(0,0) scale(1) rotate(0deg); opacity: 1; }
  45%      { transform: translate(130px,-130px) scale(0.75) rotate(-20deg); opacity: 0.5; }
  60%      { transform: translate(130px,-130px) scale(0.75) rotate(-20deg); opacity: 0.5; }
  88%, 100%{ transform: translate(0,0) scale(1) rotate(0deg); opacity: 1; }
}
@keyframes scatterBR {
  0%, 15%  { transform: translate(0,0) scale(1) rotate(0deg); opacity: 1; }
  45%      { transform: translate(-130px,-130px) scale(0.75) rotate(20deg); opacity: 0.5; }
  60%      { transform: translate(-130px,-130px) scale(0.75) rotate(20deg); opacity: 0.5; }
  88%, 100%{ transform: translate(0,0) scale(1) rotate(0deg); opacity: 1; }
}

/* ========== SECTION COMMON ========== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
  display: inline-block; background: rgba(255,107,0,0.12);
  border: 1px solid var(--orange); color: var(--orange);
  padding: 5px 14px; border-radius: 99px; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px,5vw,44px); font-weight: 800; margin-bottom: 12px; line-height: 1.1;
}
.section-desc { color: var(--text-muted); font-size: 15px; max-width: 500px; margin: 0 auto; }

/* ========== PRODUCTS ========== */
.products-section { padding: 100px 0; background: var(--dark2); }

.category-tabs {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 22px; border-radius: 99px; border: 1px solid var(--border);
  background: var(--dark3); color: var(--text-muted); font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #000; border-color: transparent; box-shadow: var(--glow-orange);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
}

.product-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  animation: fadeUp 0.5s ease both;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
  z-index: 2;
}
.product-card::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: 0.5s; pointer-events: none;
}
.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--orange);
  box-shadow: 0 10px 40px rgba(255, 107, 0, 0.4);
  z-index: 5;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover::after { left: 100%; }

.card-badge {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, #ff3c00, #ff8c00);
  color: #fff; font-size: 10px; font-weight: 800;
  padding: 4px 10px; border-radius: 99px;
  text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255,60,0,0.3);
  z-index: 3;
}
.card-badge.hot { background: linear-gradient(135deg, #ff3c00, var(--orange)); }

.card-game-icon { font-size: 72px; margin-bottom: 16px; display: block; line-height: 1; }
.card-tag {
  background: rgba(255,107,0,0.1); color: var(--orange-light);
  font-size: 10px; font-weight: 800; padding: 4px 12px;
  border-radius: 99px; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 4px;
}

.product-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 0; }
.product-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 4px; }

.price-box { font-size: 15px; color: var(--text-muted); margin-top: auto; }
.price-box .price { color: var(--yellow); font-size: 24px; font-weight: 800; margin-left: 4px; }

.card-info { flex: 1; }

.card-game-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 99px; margin-bottom: 8px;
  background: rgba(255,107,0,0.15); color: var(--orange-light);
  text-transform: uppercase; letter-spacing: 1px;
}
.card-game-tag.ff-tag { background: rgba(255,100,0,0.15); color: #ff6400; }
.card-game-tag.ml-tag { background: rgba(255,193,7,0.15); color: var(--yellow); }
.card-game-tag.joki-tag { background: rgba(218, 34, 34, 0.484); color: #f7cd44; }

.card-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; }
.card-price { font-size: 14px; color: var(--text-muted); }
.card-price span { font-size: 20px; font-weight: 800; color: var(--yellow); }

.btn-order {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--radius-sm);
  background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.35);
  color: #25d366; font-weight: 700; font-size: 14px;
  transition: var(--transition); font-family: 'Outfit', sans-serif;
}
.btn-order:hover { background: rgba(37,211,102,0.22); transform: translateY(-2px); box-shadow: 0 0 20px rgba(37,211,102,0.2); }
.wa-icon { width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }

.btn-contact .wa-icon {
  position: absolute; left: 24px;
}

/* Tombol lihat daftar harga FF */
.btn-ff-list {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255,107,0,0.18), rgba(255,193,7,0.12));
  border: 1px solid rgba(255,107,0,0.45);
  color: var(--orange-light); font-weight: 700; font-size: 14px;
  transition: var(--transition); font-family: 'Outfit', sans-serif;
  text-decoration: none;
}
.btn-ff-list:hover {
  background: linear-gradient(135deg, rgba(255,107,0,0.30), rgba(255,193,7,0.20));
  border-color: var(--orange); transform: translateY(-2px);
  box-shadow: var(--glow-orange); color: var(--yellow);
}

/* Tombol lihat daftar harga ML */
.btn-ml-list {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255,193,7,0.18), rgba(255,193,7,0.05));
  border: 1px solid rgba(255,193,7,0.45);
  color: var(--yellow); font-weight: 700; font-size: 14px;
  transition: var(--transition); font-family: 'Outfit', sans-serif;
  text-decoration: none;
}
.btn-ml-list:hover {
  background: linear-gradient(135deg, rgba(255,193,7,0.30), rgba(255,193,7,0.15));
  border-color: var(--yellow); transform: translateY(-2px);
  box-shadow: var(--glow-yellow); color: #fff;
}

/* Tombol lihat daftar harga Joki */
.btn-joki-list {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(218, 34, 34, 0.2), rgba(218, 34, 34, 0.05));
  border: 1px solid rgba(218, 34, 34, 0.45);
  color: #f7cd44; font-weight: 700; font-size: 14px;
  transition: var(--transition); font-family: 'Outfit', sans-serif;
  text-decoration: none;
}
.btn-joki-list:hover {
  background: linear-gradient(135deg, rgba(218, 34, 34, 0.35), rgba(218, 34, 34, 0.15));
  border-color: #f7cd44; transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(218, 34, 34, 0.4); color: #fff;
}

/* ========== FF PRICE LIST CARD ========== */
.pricelist-card {
  grid-column: 1 / -1;  /* span full width */
  align-items: stretch;  /* konten melebar penuh */
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
}

.pl-header {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
}
.pl-header .card-game-icon { font-size: 36px; flex-shrink: 0; }

.pl-group-title {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--orange); margin: 16px 0 10px;
  padding-bottom: 6px; border-bottom: 1px solid var(--border);
}

.pl-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.pl-items-other {
  grid-template-columns: repeat(3, 1fr);
}

.pl-items-2col {
  grid-template-columns: repeat(2, 1fr);
}

.pl-item {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 10px; border-radius: 8px;
  background: rgba(255,107,0,0.06); border: 1px solid rgba(255,107,0,0.12);
  transition: var(--transition); cursor: pointer;
  text-decoration: none;
}
.pl-item:hover {
  background: rgba(255,107,0,0.14); border-color: var(--orange);
  transform: translateY(-1px);
}

.pl-label {
  flex: 1; font-size: 13px; font-weight: 600; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.pl-item .pl-price {
  font-size: 12px; font-weight: 700; color: var(--yellow);
  white-space: nowrap; flex-shrink: 0;
}

.pl-wa { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.8; }
.pl-item:hover .pl-wa { opacity: 1; }

.pl-item-wide .pl-label { font-size: 13px; }

/* ========== HIDDEN CARD ========== */
.product-card.hidden { display: none; }

/* ========== CONTACT ========== */
.contact-section { padding: 100px 0; background: var(--dark); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  max-width: 900px; margin: 0 auto;
}

.contact-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px; text-align: center;
  backdrop-filter: blur(12px); transition: var(--transition);
}
.contact-card:hover { border-color: rgba(255,107,0,0.4); box-shadow: var(--glow-orange); transform: translateY(-4px); }
.contact-logo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; filter: drop-shadow(0 0 20px rgba(255,107,0,0.5)); border: 2px solid rgba(255,107,0,0.2); }
.contact-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.contact-card p { color: var(--text-muted); margin-bottom: 24px; font-size: 14px; }

.btn-contact {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 24px 12px 54px; border-radius: 99px;
  font-weight: 700; font-size: 14px; transition: var(--transition);
  width: 100%; position: relative; text-align: center;
}
.btn-contact.wa {
  background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.4); color: #25d366;
}
.btn-contact.wa:hover { background: rgba(37,211,102,0.25); transform: translateY(-2px); }

.btn-contact.ig {
  background: linear-gradient(135deg, rgba(225,48,108,0.12), rgba(253,29,29,0.12));
  border: 1px solid rgba(225,48,108,0.4); color: #ff5a82;
}
.btn-contact.ig:hover { background: linear-gradient(135deg, rgba(225,48,108,0.22), rgba(253,29,29,0.22)); transform: translateY(-2px); box-shadow: 0 0 20px rgba(225,48,108,0.3); }

.btn-contact.linktree {
  background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.4); color: var(--orange-light);
}
.btn-contact.linktree:hover { background: rgba(255,107,0,0.22); transform: translateY(-2px); box-shadow: var(--glow-orange); }

.btn-contact.tiktok {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); color: #fff;
}
.btn-contact.tiktok:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); box-shadow: 0 0 20px rgba(255,255,255,0.2); }

.btn-contact.youtube {
  background: rgba(255,0,0,0.12); border: 1px solid rgba(255,0,0,0.4); color: #ff3333;
}
.btn-contact.youtube:hover { background: rgba(255,0,0,0.22); transform: translateY(-2px); box-shadow: 0 0 20px rgba(255,0,0,0.3); }

.btn-contact.discord {
  background: rgba(88,101,242,0.12); border: 1px solid rgba(88,101,242,0.4); color: #5865f2;
}
.btn-contact.discord:hover { background: rgba(88,101,242,0.22); transform: translateY(-2px); box-shadow: 0 0 20px rgba(88,101,242,0.3); }

.btn-contact.telegram {
  background: rgba(0,136,204,0.12); border: 1px solid rgba(0,136,204,0.4); color: #0088cc;
}
.btn-contact.telegram:hover { background: rgba(0,136,204,0.22); transform: translateY(-2px); box-shadow: 0 0 20px rgba(0,136,204,0.3); }

.btn-contact.facebook {
  background: rgba(24,119,242,0.12); border: 1px solid rgba(24,119,242,0.4); color: #1877f2;
}
.btn-contact.facebook:hover { background: rgba(24,119,242,0.22); transform: translateY(-2px); box-shadow: 0 0 20px rgba(24,119,242,0.3); }

.contact-buttons-wrapper {
  display: flex; flex-direction: column; gap: 12px; margin-top: 10px;
}

/* Footer Social Links */
.footer-social-links {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-link-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; transition: var(--transition);
}
.footer-link-item:hover { transform: translateX(5px); }
.footer-link-item.wa { color: #25d366; }
.footer-link-item.ig { color: #ff5a82; }
.footer-link-item.linktree { color: var(--orange); }
.footer-link-item.tiktok { color: #fff; }

.contact-info-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  backdrop-filter: blur(12px);
}
.contact-info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }

.order-steps { padding-left: 0; counter-reset: steps; }
.order-steps li {
  padding: 10px 14px 10px 42px;
  margin-bottom: 8px; border-radius: var(--radius-sm);
  background: rgba(255,107,0,0.06); border-left: 2px solid var(--orange);
  font-size: 14px; color: var(--text-muted); position: relative;
  counter-increment: steps;
}
.order-steps li::before {
  content: counter(steps); position: absolute; left: 12px;
  color: var(--orange); font-weight: 800; font-size: 13px;
}

/* ========== PROFILE OVERRIDES ========== */
#profile .contact-grid {
  grid-template-columns: 1fr;
  max-width: 100%;
  margin: 0;
}

#profile .contact-logo {
  display: block;
  margin: 0 auto 16px auto;
  width: 80px;
  height: 80px;
}

#profile .contact-card {
  padding: 48px;
}

/* ========== VERIFY ========== */
.verify-section { padding: 100px 0; background: var(--dark2); position: relative; overflow: hidden; }

/* Efek Scanning Grid di Verify */
.verify-bg-scan {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(rgba(255,107,0,0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,107,0,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.verify-bg-scan::after {
  content: ''; position: absolute; top: -100%; left: 0; right: 0; height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(255,107,0,0.1), rgba(255,107,0,0.6), rgba(255,107,0,0.1), transparent);
  animation: scanDown 4s linear infinite;
}
@keyframes scanDown {
  0% { top: -100%; }
  100% { top: 200%; }
}

.verify-section .container { position: relative; z-index: 1; }

.verify-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 24px;
}

.verify-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; position: relative;
  backdrop-filter: blur(12px); overflow: hidden; 
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.6s ease;
}
.verify-card::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: 0.5s; pointer-events: none;
}

.verify-card:hover { 
  border-color: var(--yellow); 
  box-shadow: 0 10px 40px rgba(255, 193, 7, 0.4); 
  transform: translateY(-15px) scale(1.05); 
  z-index: 10;
}
.verify-card:hover::after { left: 100%; }

/* Override reveal khusus untuk verify-card agar lebih dramatis */
.verify-card.reveal { opacity: 0; transform: translateY(40px) scale(0.9); }
.verify-card.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

.verify-num {
  position: absolute; top: -10px; right: 20px;
  font-size: 64px; font-weight: 900; color: rgba(255,107,0,0.08); line-height: 1;
  pointer-events: none;
  transition: transform 0.5s ease, color 0.5s ease;
}
.verify-card:hover .verify-num {
  transform: scale(1.2) translateX(-10px);
  color: rgba(255,107,0,0.18);
}
.verify-icon { 
  font-size: 36px; margin-bottom: 14px; 
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.verify-card:hover .verify-icon {
  transform: scale(1.2) rotate(12deg);
}

.verify-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--yellow); }
.verify-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.verify-card p strong { color: var(--text); }

/* ========== WARNING ========== */
.warning-section { padding: 80px 0; background: var(--dark); position: relative; overflow: hidden; }

/* Efek Percikan Merah di Warning */
.warning-sparks { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.spark {
  position: absolute; border-radius: 50%;
  background: #ff3c00; box-shadow: 0 0 10px #ff3c00, 0 0 20px #ff3c00;
  animation: floatSpark linear infinite;
  opacity: 0;
}
.s1 { width: 6px; height: 6px; left: 5%; bottom: -10px; animation-duration: 4s; animation-delay: 0s; }
.s2 { width: 4px; height: 4px; left: 12%; bottom: -10px; animation-duration: 6s; animation-delay: 2s; }
.s3 { width: 8px; height: 8px; left: 20%; bottom: -10px; animation-duration: 5s; animation-delay: 1s; }
.s4 { width: 5px; height: 5px; left: 28%; bottom: -10px; animation-duration: 7s; animation-delay: 3s; }
.s5 { width: 7px; height: 7px; left: 36%; bottom: -10px; animation-duration: 4.5s; animation-delay: 0.5s; }
.s6 { width: 4px; height: 4px; left: 45%; bottom: -10px; animation-duration: 6.5s; animation-delay: 1.5s; }
.s7 { width: 6px; height: 6px; left: 52%; bottom: -10px; animation-duration: 5.5s; animation-delay: 3.5s; }
.s8 { width: 5px; height: 5px; left: 60%; bottom: -10px; animation-duration: 4.8s; animation-delay: 2.2s; }
.s9 { width: 7px; height: 7px; left: 68%; bottom: -10px; animation-duration: 5.2s; animation-delay: 0.8s; }
.s10 { width: 4px; height: 4px; left: 75%; bottom: -10px; animation-duration: 6.2s; animation-delay: 2.5s; }
.s11 { width: 8px; height: 8px; left: 82%; bottom: -10px; animation-duration: 4.2s; animation-delay: 1.2s; }
.s12 { width: 5px; height: 5px; left: 88%; bottom: -10px; animation-duration: 7.2s; animation-delay: 0.3s; }
.s13 { width: 6px; height: 6px; left: 95%; bottom: -10px; animation-duration: 5.8s; animation-delay: 2.8s; }
.s14 { width: 4px; height: 4px; left: 32%; bottom: -10px; animation-duration: 5.4s; animation-delay: 1.7s; }
.s15 { width: 5px; height: 5px; left: 48%; bottom: -10px; animation-duration: 6.8s; animation-delay: 0.9s; }
.s16 { width: 7px; height: 7px; left: 78%; bottom: -10px; animation-duration: 4.6s; animation-delay: 3.2s; }

@keyframes floatSpark {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% { transform: translateY(-800px) translateX(50px); opacity: 0; }
}

.warning-section .container { position: relative; z-index: 1; }

.warning-box {
  background: linear-gradient(135deg, rgba(255,60,0,0.08), rgba(255,107,0,0.05));
  border: 1px solid rgba(255,60,0,0.35); border-radius: 24px;
  padding: 56px 48px; text-align: center;
  box-shadow: 0 0 60px rgba(255,60,0,0.12);
}
.warning-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 12px; }
.warning-icon-big { font-size: 56px; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.1);} }
.warning-header h2 { font-size: 32px; font-weight: 800; margin-top: 8px; }
.warning-subtitle { font-size: 15px; color: var(--text-muted); margin-bottom: 36px; }
.warning-subtitle strong { color: var(--orange); }

.warning-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  text-align: left; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.warn-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,60,0,0.07); border: 1px solid rgba(255,60,0,0.18);
  border-radius: var(--radius-sm); padding: 14px 16px;
}
.warn-x { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.warn-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.warn-item p strong { color: #ff6060; }

.warning-cta p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.btn-report {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 99px;
  background: linear-gradient(135deg, #ff3c00, var(--orange));
  color: #fff; font-weight: 700; font-size: 15px;
  box-shadow: 0 0 30px rgba(255,60,0,0.4); transition: var(--transition);
}
.btn-report:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(255,60,0,0.6); }

/* ========== FOOTER ========== */
.footer { background: var(--dark2); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 16px; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-wa {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: #25d366; transition: var(--transition);
}
.footer-wa:hover { color: #1aad54; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px; text-align: center;
  color: var(--text-muted); font-size: 13px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero { padding-top: 110px; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-socials { justify-content: center; gap: 24px; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-visual { margin-top: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; }
  .warning-list { grid-template-columns: 1fr; }
  /* Price list: 3 kolom di tablet */
  .pl-items { grid-template-columns: repeat(3, 1fr); }
  .pl-items-other { grid-template-columns: repeat(2, 1fr); }
  .pl-items-2col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  /* Hilangkan backdrop-filter navbar saat menu terbuka agar z-index berjalan normal */
  .navbar.nav-open { backdrop-filter: none; }

  /* OVERLAY GELAP DI SISA LAYAR */
  .nav-overlay {
    display: block;
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 100000;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }

  /* SIDEBAR HEADER KHUSUS MOBILE */
  .mobile-nav-header {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding-bottom: 24px; margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .close-btn {
    background: rgba(255,255,255,0.05); border: 1px solid var(--border);
    color: #fff; width: 36px; height: 36px; border-radius: 8px;
    font-size: 24px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
  }
  .close-btn:hover { background: rgba(255,255,255,0.1); }

  /* OFF-CANVAS SIDEBAR */
  .nav-links {
    position: fixed; top: 0; left: -100%; bottom: 0;
    width: 85%; max-width: 320px;
    background: #0a0a0f;
    flex-direction: column; gap: 8px;
    padding: 24px 16px; /* Kurangi padding kiri-kanan agar logo muat */
    z-index: 100001; /* di atas overlay */
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
    border-right: 1px solid var(--border);
    overflow-y: auto;
    display: flex; /* selalu flex, disembunyikan pakai left: -100% */
  }
  .nav-links.open { left: 0; }
  
  .nav-links a {
    display: block; padding: 14px 16px; border-radius: 8px;
    font-size: 15px; font-weight: 600; text-align: left;
    transition: var(--transition); width: 100%;
  }
  .nav-links a::after { display: none; } /* hapus garis bawah default desktop */
  
  /* Menu Aktif / Hover - Warna hijau ala contoh referensi */
  .nav-links a.active, .nav-links a:hover {
    background: rgba(37,211,102,0.15);
    color: #25d366;
  }

  .hamburger { display: flex; z-index: 100000; transition: var(--transition); }
  /* Sembunyikan hamburger bawaan saat menu aktif agar tidak ada 2 tombol X */
  .hamburger.active { opacity: 0; visibility: hidden; pointer-events: none; }
  .float-card { width: 80px; height: 80px; font-size: 34px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .warning-box { padding: 36px 20px; }
  .product-grid { grid-template-columns: 1fr; }
  /* Pricelist card tidak ikut collapse — tetap full width */
  .pricelist-card { grid-column: 1 / -1; }
  /* Price list: 1 kolom di mobile */
  .pl-items { grid-template-columns: 1fr; }
  .pl-items-other { grid-template-columns: 1fr; }
  .pl-items-2col { grid-template-columns: 1fr; }
  /* Teks nama produk: wrap ke bawah di mobile agar tidak terpotong */
  .pl-label { white-space: normal; overflow: visible; text-overflow: unset; }
  .product-card h3 { font-size: 17px; }
  .product-card p { font-size: 13px; }
  .price-box .price { font-size: 20px; }
  .card-game-icon { font-size: 48px; }
  .hero-social-item { width: 42px; height: 42px; }
  .hero-social-item img { width: 20px; height: 20px; }
  .hero-badge { font-size: 11px; }

  /* === ORBIT ICONS – MOBILE FIX ===
     Card 80px, gap 16px, padding 26px → wrapper 228px
     Gap center: 26+80+8 = 114px → icon (36px) offset = 114-18 = 96px
     Far edge:   228-36 = 192px
  */
  .float-social { width: 36px; height: 36px; font-size: 16px; }
  .float-social img { width: 18px; height: 18px; }

  @keyframes orbitWA {
    0%,3.75%      { transform: translate(96px,  0px)   rotate(0deg); }
    11.25%,28.75% { transform: translate(192px, 96px)  rotate(90deg); }
    36.25%,53.75% { transform: translate( 96px,192px)  rotate(180deg); }
    61.25%,78.75% { transform: translate(  0px, 96px)  rotate(270deg); }
    86.25%,100%   { transform: translate( 96px,  0px)  rotate(360deg); }
  }
  @keyframes orbitIG {
    0%,3.75%      { transform: translate(192px, 96px)  rotate(0deg); }
    11.25%,28.75% { transform: translate( 96px,192px)  rotate(90deg); }
    36.25%,53.75% { transform: translate(  0px, 96px)  rotate(180deg); }
    61.25%,78.75% { transform: translate( 96px,  0px)  rotate(270deg); }
    86.25%,100%   { transform: translate(192px, 96px)  rotate(360deg); }
  }
  @keyframes orbitTT {
    0%,3.75%      { transform: translate( 96px,192px)  rotate(0deg); }
    11.25%,28.75% { transform: translate(  0px, 96px)  rotate(90deg); }
    36.25%,53.75% { transform: translate( 96px,  0px)  rotate(180deg); }
    61.25%,78.75% { transform: translate(192px, 96px)  rotate(270deg); }
    86.25%,100%   { transform: translate( 96px,192px)  rotate(360deg); }
  }
  @keyframes orbitLT {
    0%,3.75%      { transform: translate(  0px, 96px)  rotate(0deg); }
    11.25%,28.75% { transform: translate( 96px,  0px)  rotate(90deg); }
    36.25%,53.75% { transform: translate(192px, 96px)  rotate(180deg); }
    61.25%,78.75% { transform: translate( 96px,192px)  rotate(270deg); }
    86.25%,100%   { transform: translate(  0px, 96px)  rotate(360deg); }
  }
}

/* ========== EXTRA BACKGROUND EFFECTS PER SECTION ========== */

/* 1. Products Section: Tech Grid Pattern */
.products-section { position: relative; overflow: hidden; }
.products-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,107,0,0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,107,0,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none; z-index: 0;
  animation: gridPulse 5s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* 2. Contact Section: Wavy Light Effect */
.contact-section { position: relative; overflow: hidden; }
.contact-bg-waves { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.wave {
  position: absolute; width: 150vw; height: 150vw;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  border-radius: 45%;
  animation: waveRotate 20s infinite linear;
}
.w1 { top: -100vw; left: -25vw; background: radial-gradient(circle, rgba(255,107,0,0.18) 0%, transparent 65%); }
.w2 { bottom: -100vw; right: -25vw; background: radial-gradient(circle, rgba(255,193,7,0.18) 0%, transparent 65%); animation-duration: 25s; animation-direction: reverse; }

@keyframes waveRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 3. Verify Section: Scanning Lines */
.verify-section { position: relative; overflow: hidden; }
.verify-bg-scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 100px,
    rgba(255, 193, 7, 0.03) 100px,
    rgba(255, 193, 7, 0.03) 101px
  );
  animation: scanMove 10s linear infinite;
  pointer-events: none; z-index: 0;
}
@keyframes scanMove {
  from { background-position: 0 0; }
  to { background-position: 0 1000px; }
}

/* 4. Warning Section: Hazard Pulse Glow */
.warning-section { position: relative; overflow: hidden; }
.warning-bg-pulse {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(218, 34, 34, 0.08) 0%, transparent 70%);
  animation: warningPulse 4s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
@keyframes warningPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
