@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Press+Start+2P&family=Share+Tech+Mono&display=swap');

/* =========================================================
   OPTION 1: CYBERPUNK NEON APEX - DESIGN SYSTEM & TOKENS
   ========================================================= */
:root {
  /* Color Palette */
  --bg-dark: #050714;
  --bg-gradient: radial-gradient(circle at 50% 12%, #140b2e 0%, #080a1c 45%, #03040c 90%, #000000 100%);
  
  /* Cyber Cyan Neon */
  --cyan-neon: #00f3ff;
  --cyan-glow: 0 0 20px rgba(0, 243, 255, 0.5);
  --cyan-glow-strong: 0 0 30px rgba(0, 243, 255, 0.8);
  --cyan-border: rgba(0, 243, 255, 0.35);
  --cyan-border-hover: rgba(0, 243, 255, 0.75);
  
  /* Cyber Magenta & Purple */
  --magenta-neon: #ff007f;
  --magenta-glow: 0 0 22px rgba(255, 0, 127, 0.5);
  --purple-neon: #9d00ff;
  --purple-glow: 0 0 25px rgba(157, 0, 255, 0.45);
  
  /* Liquid Gold Accent */
  --gold-primary: #ffc700;
  --gold-secondary: #ff9d00;
  --gold-gradient: linear-gradient(135deg, #fff4a3 0%, #ffc700 50%, #e69d00 100%);
  --gold-glow: 0 0 20px rgba(255, 199, 0, 0.5);
  --gold-border: rgba(255, 199, 0, 0.35);
  
  /* Status Colors */
  --emerald-neon: #00ff87;
  --emerald-glow: 0 0 20px rgba(0, 255, 135, 0.45);
  --red-neon: #ff2a5f;
  --red-glow: 0 0 25px rgba(255, 42, 95, 0.5);
  
  /* Glass Surfaces */
  --glass-bg: rgba(9, 14, 32, 0.78);
  --glass-bg-hover: rgba(13, 20, 46, 0.88);
  --glass-border: rgba(0, 243, 255, 0.28);
  --glass-border-hover: rgba(0, 243, 255, 0.7);
  
  /* Typography */
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --text-cyan: #00f3ff;
  --text-gold: #ffc700;
  
  /* Futuristic HUD Radii */
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 6px;
}

/* =========================================================
   BASE RESET & GLOBAL SELECTION PREVENT
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body,
html {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

input,
textarea,
select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(157, 0, 255, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 15% 45%, rgba(0, 243, 255, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(255, 0, 127, 0.14) 0%, transparent 35%),
    linear-gradient(180deg, #070918 0%, #03040c 100%);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Cyber Ambient Hex Grid Background Texture Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* =========================================================
   FLOATING SPACEMAN BACKGROUND (MULTI-DIRECTIONAL TRAJECTORIES)
   ========================================================= */
.spaceman-background {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.spaceman-fly {
  position: absolute;
  pointer-events: none;
  transition: filter 0.3s ease;
}

/* Spaceman 1: Kiri Bawah -> Kanan Atas (Cyan Neon Glow) */
.spaceman-1 {
  top: 85%;
  left: -20%;
  width: min(240px, 25vw);
  max-width: 280px;
  filter: drop-shadow(0 0 25px rgba(0, 243, 255, 0.65)) drop-shadow(0 0 50px rgba(0, 243, 255, 0.35));
  animation: spacemanFlyA 22s linear infinite;
  animation-delay: 0s;
  z-index: 2;
}

/* Spaceman 2: Kanan Atas -> Kiri Bawah (Magenta Neon Glow) */
.spaceman-2 {
  top: -15%;
  left: 105%;
  width: min(190px, 20vw);
  max-width: 230px;
  filter: drop-shadow(0 0 25px rgba(255, 0, 127, 0.65)) drop-shadow(0 0 50px rgba(255, 0, 127, 0.35));
  animation: spacemanFlyB 26s linear infinite;
  animation-delay: -6s;
  opacity: 0.9;
  z-index: 1;
}

/* Spaceman 3: Kiri Tengah -> Kanan Tengah (Wave Floating, Gold Glow & Depth Blur) */
.spaceman-3 {
  top: 42%;
  left: -22%;
  width: min(150px, 16vw);
  max-width: 170px;
  filter: drop-shadow(0 0 20px rgba(255, 199, 0, 0.6)) blur(1.2px);
  animation: spacemanFlyC 30s ease-in-out infinite;
  animation-delay: -12s;
  opacity: 0.75;
  z-index: 0;
}

/* Spaceman 4: Kanan Bawah -> Kiri Atas (Purple Neon Glow) */
.spaceman-4 {
  top: 92%;
  left: 110%;
  width: min(210px, 22vw);
  max-width: 250px;
  filter: drop-shadow(0 0 25px rgba(157, 0, 255, 0.65)) drop-shadow(0 0 50px rgba(157, 0, 255, 0.35));
  animation: spacemanFlyD 24s linear infinite;
  animation-delay: -16s;
  opacity: 0.88;
  z-index: 1;
}

/* KEYFRAMES FOR 4 MULTI-DIRECTIONAL TRAJECTORIES */

/* Flight A: Bottom-Left -> Top-Right */
@keyframes spacemanFlyA {
  0% {
    transform: translate(0, 0) rotate(-24deg);
    opacity: 0;
  }
  12% {
    opacity: 0.95;
  }
  50% {
    transform: translate(50vw, -45vh) rotate(-10deg);
    opacity: 1;
  }
  88% {
    opacity: 0.95;
  }
  100% {
    transform: translate(128vw, -112vh) rotate(15deg);
    opacity: 0;
  }
}

/* Flight B: Top-Right -> Bottom-Left (Using spacemankiri.png) */
@keyframes spacemanFlyB {
  0% {
    transform: translate(0, 0) rotate(18deg);
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  50% {
    transform: translate(-55vw, 50vh) rotate(5deg);
    opacity: 0.95;
  }
  85% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-130vw, 115vh) rotate(-15deg);
    opacity: 0;
  }
}

/* Flight C: Left-Center -> Right-Center (Floating Zero-G Wave) */
@keyframes spacemanFlyC {
  0% {
    transform: translate(0, 0) rotate(-8deg);
    opacity: 0;
  }
  10% {
    opacity: 0.75;
  }
  25% {
    transform: translate(32vw, -7vh) rotate(-2deg);
  }
  50% {
    transform: translate(64vw, 7vh) rotate(6deg);
    opacity: 0.85;
  }
  75% {
    transform: translate(96vw, -5vh) rotate(10deg);
  }
  90% {
    opacity: 0.75;
  }
  100% {
    transform: translate(135vw, 2vh) rotate(14deg);
    opacity: 0;
  }
}

/* Flight D: Bottom-Right -> Top-Left (Using spacemankiri.png) */
@keyframes spacemanFlyD {
  0% {
    transform: translate(0, 0) rotate(-22deg);
    opacity: 0;
  }
  15% {
    opacity: 0.88;
  }
  50% {
    transform: translate(-55vw, -55vh) rotate(-8deg);
    opacity: 0.95;
  }
  85% {
    opacity: 0.88;
  }
  100% {
    transform: translate(-132vw, -122vh) rotate(12deg);
    opacity: 0;
  }
}

/* Vignette Overlay */
.vignette-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 35%, rgba(3, 4, 12, 0.85) 100%);
}

#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* =========================================================
   CYBER HUD NAVBAR (GLASSMORPHISM & NEON BORDER)
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 32px;
  background: rgba(5, 7, 20, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid rgba(0, 243, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 1px 20px rgba(0, 243, 255, 0.15);
  transition: all 0.3s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-brand-icon {
  width: 42px;
  height: 48px;
  background: linear-gradient(135deg, #ff007f 0%, #9d00ff 100%);
  border-radius: 8px 2px 8px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.5);
  border: 1.5px solid var(--cyan-neon);
  transform: rotate(-4deg);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.nav-brand:hover .nav-brand-icon {
  transform: rotate(0deg) scale(1.1);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
}

.nav-brand-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan-neon) 50%, var(--gold-primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
  text-transform: uppercase;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-center-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 4px 14px 4px 14px;
  background: rgba(0, 243, 255, 0.06);
  border: 1px solid rgba(0, 243, 255, 0.35);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.nav-center-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.nav-center-btn:hover {
  background: rgba(0, 243, 255, 0.18);
  border-color: var(--cyan-neon);
  color: var(--cyan-neon);
  transform: translateY(-2px);
  box-shadow: var(--cyan-glow);
}

.nav-center-btn:hover::before {
  left: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login {
  padding: 10px 24px;
  border-radius: 4px 14px 4px 14px;
  background: transparent;
  border: 1.5px solid var(--cyan-neon);
  color: var(--cyan-neon);
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}

.btn-login:hover {
  background: rgba(0, 243, 255, 0.18);
  color: #ffffff;
  box-shadow: var(--cyan-glow-strong);
  transform: translateY(-2px);
}

.btn-daftar {
  padding: 10px 26px;
  border-radius: 4px 14px 4px 14px;
  background: var(--gold-gradient);
  border: none;
  color: #04060d;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: var(--gold-glow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-daftar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.5s ease;
}

.btn-daftar:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 30px rgba(255, 199, 0, 0.75);
}

.btn-daftar:hover::before {
  left: 100%;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--cyan-neon);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
    height: 66px;
  }

  .nav-brand-title {
    font-size: 16px;
  }

  .nav-center {
    display: none;
  }

  .nav-center.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    background: rgba(5, 7, 20, 0.96);
    backdrop-filter: blur(24px);
    padding: 20px;
    border-bottom: 1.5px solid var(--cyan-neon);
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  }

  .nav-center-btn {
    width: 100%;
    justify-content: center;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* =========================================================
   FEATURE CARDS SECTION (CHISELED HUD CUT-CORNER DESIGN)
   ========================================================= */
.cards-section {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1240px;
  margin: 110px auto 40px;
  padding: 0 24px;
  text-align: center;
}

.section-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seo-main-h1 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #00f3ff 0%, #ff007f 50%, #ffc700 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.4;
  padding: 0 12px;
}

.title-banner-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(9, 14, 32, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--cyan-neon);
  padding: 14px 36px;
  border-radius: 4px 20px 4px 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8), var(--cyan-glow);
  position: relative;
  overflow: hidden;
  animation: cyberpunkBannerPulse 3s infinite alternate ease-in-out;
}

@keyframes cyberpunkBannerPulse {
  0% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 243, 255, 0.35);
    border-color: rgba(0, 243, 255, 0.5);
  }
  100% {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 243, 255, 0.8), 0 0 15px rgba(255, 0, 127, 0.4);
    border-color: var(--cyan-neon);
  }
}

.section-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan-neon) 45%, var(--gold-primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9));
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-cyan);
  margin-top: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 243, 255, 0.5);
}

/* CARDS GRID & FUTURISTIC HUD CUT-CORNER CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--cyan-border);
  /* Chiseled Cut-Corner HUD Shape */
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  border-radius: 2px;
  padding: 30px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 243, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--cyan-neon);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), var(--cyan-glow);
  background: var(--glass-bg-hover);
}

/* Card Top Neon Scanline */
.card-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan-neon), var(--magenta-neon), var(--gold-primary), transparent);
}

/* Card Cyber Badges */
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.badge-new-member {
  background: rgba(0, 243, 255, 0.12);
  border: 1px solid rgba(0, 243, 255, 0.45);
  color: var(--cyan-neon);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.25);
}

.badge-member {
  background: rgba(255, 0, 127, 0.12);
  border: 1px solid rgba(255, 0, 127, 0.45);
  color: var(--magenta-neon);
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.25);
}

.badge-joki {
  background: rgba(0, 243, 255, 0.15);
  border: 1px solid var(--cyan-neon);
  color: var(--cyan-neon);
  box-shadow: var(--cyan-glow);
}

/* Card Icon Box */
.card-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 8px 2px 8px 2px;
  background: rgba(0, 243, 255, 0.08);
  border: 1px solid rgba(0, 243, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  box-shadow: inset 0 0 15px rgba(0, 243, 255, 0.2), 0 0 15px rgba(0, 243, 255, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .card-icon-box {
  transform: scale(1.12) rotate(6deg);
  border-color: var(--cyan-neon);
  box-shadow: var(--cyan-glow);
}

/* Card Title */
.card-title-text {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Card Subtext Description */
.card-subtext-desc {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.feature-card:hover .card-subtext-desc {
  color: #ffffff;
}

/* Card Top LED Status Dot */
.card-status-dot {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 8px;
  height: 8px;
  background-color: var(--emerald-neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-neon);
  animation: ledPulse 1.8s infinite ease-in-out;
  z-index: 5;
}

@keyframes ledPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.95;
    box-shadow: 0 0 10px var(--emerald-neon);
  }
  50% {
    transform: scale(1.35);
    opacity: 0.5;
    box-shadow: 0 0 18px var(--emerald-neon);
  }
}

/* Card Themes & Hover Variations */
.card-theme-gold:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), var(--gold-glow);
}

.card-theme-wa:hover {
  border-color: #25d366;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(37, 211, 102, 0.5);
}

.card-theme-magenta:hover {
  border-color: var(--magenta-neon);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), var(--magenta-glow);
}

.card-theme-cyan:hover {
  border-color: var(--cyan-neon);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), var(--cyan-glow);
}

.card-theme-emerald:hover {
  border-color: var(--emerald-neon);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), var(--emerald-glow);
}

.card-theme-joki:hover {
  border-color: var(--cyan-neon);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 243, 255, 0.6), 0 0 15px rgba(157, 0, 255, 0.4);
}

/* Card Action Button Base & Modifiers */
.card-btn {
  width: 100%;
  padding: 13px 20px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  border-radius: 2px;
  margin-top: auto;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.5s ease;
}

.card-btn:hover {
  transform: translateY(-2px);
}

.card-btn:hover::before {
  left: 100%;
}

/* Distinct Button Colors */
.card-btn.btn-gold {
  background: var(--gold-gradient);
  color: #04060d;
  box-shadow: var(--gold-glow);
}
.card-btn.btn-gold:hover {
  box-shadow: 0 0 30px rgba(255, 199, 0, 0.8);
}

.card-btn.btn-wa-card {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.45);
}
.card-btn.btn-wa-card:hover {
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.75);
}

.card-btn.btn-magenta-card {
  background: linear-gradient(135deg, #ff007f 0%, #9d00ff 100%);
  color: #ffffff;
  box-shadow: var(--magenta-glow);
}
.card-btn.btn-magenta-card:hover {
  box-shadow: 0 0 30px rgba(255, 0, 127, 0.8);
}

.card-btn.btn-cyan-card {
  background: linear-gradient(135deg, #00f3ff 0%, #0099ff 100%);
  color: #04060d;
  box-shadow: var(--cyan-glow);
}
.card-btn.btn-cyan-card:hover {
  box-shadow: var(--cyan-glow-strong);
}

.card-btn.btn-emerald-card {
  background: linear-gradient(135deg, #00ff87 0%, #00b359 100%);
  color: #04060d;
  box-shadow: var(--emerald-glow);
}
.card-btn.btn-emerald-card:hover {
  box-shadow: 0 0 30px rgba(0, 255, 135, 0.75);
}

.card-btn.btn-joki-card {
  background: linear-gradient(135deg, #00f3ff 0%, #9d00ff 100%);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.5), 0 0 15px rgba(157, 0, 255, 0.3);
}
.card-btn.btn-joki-card:hover {
  box-shadow: 0 0 35px rgba(0, 243, 255, 0.8), 0 0 25px rgba(157, 0, 255, 0.6);
}

/* =========================================================
   HERO FEATURED CARD - CHEAT ENGINE HACK SLOT (#1 FEATURE)
   ========================================================= */
.hero-featured-card {
  position: relative;
  width: 100%;
  margin-bottom: 28px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(20, 5, 25, 0.96) 0%, rgba(35, 8, 40, 0.96) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--magenta-neon);
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  border-radius: 4px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 0, 127, 0.45), 0 0 20px rgba(157, 0, 255, 0.35);
  animation: heroMagentaPulse 3s infinite ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-featured-card:hover {
  transform: translateY(-3px) scale(1.008);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 55px rgba(255, 0, 127, 0.8), 0 0 35px rgba(0, 243, 255, 0.6);
}

@keyframes heroMagentaPulse {
  0%, 100% {
    border-color: var(--magenta-neon);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 0, 127, 0.5), 0 0 20px rgba(157, 0, 255, 0.35);
  }
  50% {
    border-color: var(--cyan-neon);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.95), 0 0 45px rgba(0, 243, 255, 0.65), 0 0 25px rgba(255, 0, 127, 0.5);
  }
}

.hero-top-accent {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--magenta-neon), var(--cyan-neon), var(--gold-primary), transparent);
}

.hero-card-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-live-dot {
  width: 9px;
  height: 9px;
  background-color: var(--magenta-neon);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--magenta-neon);
  animation: ledPulse 1.2s infinite;
}

.badge-hero-hot {
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.3), rgba(255, 199, 0, 0.2));
  border: 1px solid var(--magenta-neon);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 3px;
  box-shadow: var(--magenta-glow);
}

.hero-winrate-tag {
  font-size: 11px;
  font-weight: 900;
  color: var(--gold-primary);
  background: rgba(255, 199, 0, 0.12);
  border: 1px solid rgba(255, 199, 0, 0.4);
  padding: 4px 10px;
  border-radius: 3px;
  margin-left: auto;
}

.hero-card-content {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-icon-box {
  width: 76px;
  height: 76px;
  font-size: 38px;
  flex-shrink: 0;
  border-radius: 12px 3px 12px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon-magenta {
  border-color: var(--magenta-neon);
  background: rgba(255, 0, 127, 0.14);
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.45);
}

.hero-text-details {
  flex-grow: 1;
}

.hero-card-title.hero-title-magenta {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #ffffff 0%, var(--magenta-neon) 55%, var(--gold-primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-card-subtext {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.hero-action-box {
  flex-shrink: 0;
  min-width: 260px;
}

.btn-hero-magenta {
  width: 100%;
  padding: 16px 24px;
  font-size: 13.5px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--magenta-neon) 0%, #9d00ff 50%, var(--cyan-neon) 100%);
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.65), 0 0 20px rgba(157, 0, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-hero-magenta:hover {
  box-shadow: 0 0 45px rgba(255, 0, 127, 0.95), 0 0 35px rgba(0, 243, 255, 0.8);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-featured-card {
    padding: 20px 16px;
  }
  .hero-card-content {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .hero-icon-box {
    margin: 0 auto;
  }
  .hero-action-box {
    width: 100%;
    min-width: 100%;
  }
  .hero-winrate-tag {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

.btn-arrow {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.card-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Responsive grid for tablets and mobile */
@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .cards-section {
    margin-top: 76px;
    padding: 0 12px;
  }

  .section-header {
    margin-bottom: 18px;
  }

  .title-banner-box {
    padding: 8px 16px;
    border-radius: 4px 14px 4px 14px;
  }

  .section-title {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .section-subtitle {
    font-size: 10px;
    margin-top: 6px;
    letter-spacing: 0.5px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .feature-card {
    padding: 16px 10px 14px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }

  .card-badge {
    font-size: 9px;
    padding: 4px 8px;
    margin-bottom: 10px;
  }

  .card-icon-box {
    width: 42px;
    height: 42px;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .card-title-text {
    font-size: 13.5px;
    margin-bottom: 14px;
    line-height: 1.25;
  }

  .card-btn {
    padding: 9px 10px;
    font-size: 11px;
  }
}

/* =========================================================
   EVENT AJAK TEMAN SECTION & CLAIM CARDS
   ========================================================= */
.event-grid {
  max-width: 780px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.badge-claim {
  background: rgba(255, 199, 0, 0.12);
  border: 1px solid rgba(255, 199, 0, 0.45);
  color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(255, 199, 0, 0.25);
}

.claim-amount {
  font-size: 16px;
  font-weight: 900;
  color: var(--emerald-neon);
  background: rgba(0, 255, 135, 0.12);
  border: 1px solid rgba(0, 255, 135, 0.45);
  padding: 7px 18px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(0, 255, 135, 0.5);
  box-shadow: inset 0 0 12px rgba(0, 255, 135, 0.15);
}

@media (max-width: 576px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .claim-amount {
    font-size: 11.5px;
    padding: 4px 10px;
    margin-bottom: 12px;
  }
}

/* WARNING BUTTON FOR RULES MODAL */
@keyframes cyberWarningPulse {
  0% {
    box-shadow: 0 0 12px rgba(255, 42, 95, 0.5), inset 0 0 10px rgba(255, 42, 95, 0.2);
    border-color: rgba(255, 42, 95, 0.7);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 42, 95, 0.95), 0 0 15px rgba(255, 199, 0, 0.8), inset 0 0 15px rgba(255, 199, 0, 0.3);
    border-color: var(--gold-primary);
  }
  100% {
    box-shadow: 0 0 12px rgba(255, 42, 95, 0.5), inset 0 0 10px rgba(255, 42, 95, 0.2);
    border-color: rgba(255, 42, 95, 0.7);
  }
}

.btn-syarat-event {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 42, 95, 0.25) 0%, rgba(255, 199, 0, 0.25) 100%);
  border: 1.5px solid var(--red-neon);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 4px 16px 4px 16px;
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: 0.8px;
  cursor: pointer;
  margin-top: 14px;
  transition: all 0.25s ease;
  animation: cyberWarningPulse 2s infinite ease-in-out;
  text-transform: uppercase;
}

.btn-syarat-event:hover {
  background: linear-gradient(135deg, rgba(255, 42, 95, 0.45) 0%, rgba(255, 199, 0, 0.45) 100%);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px) scale(1.03);
}

.warning-icon-pulse {
  font-size: 16px;
  display: inline-block;
}

.warning-badge-tag {
  background: var(--red-neon);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* =========================================================
   MODAL POPUP SYSTEM (CYBER HUD MODALS)
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 15, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: rgba(8, 12, 28, 0.95);
  border: 1.5px solid var(--cyan-neon);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  border-radius: 2px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), var(--cyan-glow);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close-icon {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close-icon:hover {
  color: var(--cyan-neon);
}

.modal-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold-primary);
  text-align: left;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 12px rgba(255, 199, 0, 0.4);
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(4, 7, 18, 0.9);
  border: 1.5px solid rgba(0, 243, 255, 0.35);
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--cyan-neon);
  box-shadow: var(--cyan-glow);
}

.form-select option {
  background: #080c1c;
  color: #ffffff;
}

.modal-tagline {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-primary);
  text-align: left;
  margin: 20px 0 16px;
  letter-spacing: 0.5px;
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.btn-cancel {
  flex: 1;
  padding: 12px;
  border-radius: 4px 10px 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-cancel:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-submit {
  flex: 1;
  padding: 12px;
  border-radius: 4px 10px 4px 10px;
  background: var(--gold-gradient);
  border: none;
  color: #04060d;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--gold-glow);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 199, 0, 0.7);
}

/* Step 2 Confirmation Summary View */
.confirm-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.4;
  text-align: left;
}

.summary-box {
  background: rgba(4, 7, 18, 0.95);
  border: 1px solid rgba(0, 243, 255, 0.35);
  border-radius: 6px;
  padding: 16px;
  text-align: left;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13.5px;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.summary-label {
  color: var(--text-muted);
  font-weight: 600;
}

.summary-val {
  color: #ffffff;
  font-weight: 800;
}

.btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5) !important;
}

.btn-wa:hover {
  background: linear-gradient(135deg, #2bf075 0%, #15a393 100%) !important;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.75) !important;
}

/* Locked VIP Button Styling */
.btn-vip-locked {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.85);
  border: 1.5px dashed var(--gold-border);
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-vip-locked:hover {
  background: rgba(30, 41, 59, 0.95);
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.lock-badge {
  font-size: 10px;
  font-weight: 900;
  color: var(--red-neon);
  background: rgba(255, 42, 95, 0.15);
  border: 1px solid rgba(255, 42, 95, 0.4);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Rules / Terms Blocks */
.syarat-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 4px;
}

.syarat-block {
  background: rgba(4, 7, 18, 0.9);
  border: 1px solid rgba(0, 243, 255, 0.3);
  border-radius: 6px;
  padding: 14px 16px;
}

.warning-block {
  border-color: rgba(255, 42, 95, 0.4);
  background: rgba(255, 42, 95, 0.06);
}

.syarat-block-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.syarat-text {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 8px;
}

.syarat-list {
  padding-left: 18px;
  margin: 0;
  font-size: 12.5px;
  color: #e2e8f0;
  line-height: 1.6;
}

.syarat-list li {
  margin-bottom: 6px;
}

.syarat-example {
  background: rgba(0, 255, 135, 0.08);
  border-left: 3px solid var(--emerald-neon);
  padding: 6px 10px;
  border-radius: 4px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--emerald-neon);
  font-weight: 700;
}

/* =========================================================
   FLOATING ACTION DOCK (BOTTOM-RIGHT CYBER DOCK)
   ========================================================= */
.floating-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  pointer-events: auto;
}

.float-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  border-radius: 2px;
  text-decoration: none;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: 0.5px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.float-btn-icon {
  font-size: 18px;
  display: inline-block;
  line-height: 1;
}

.float-link-alt {
  background: rgba(255, 199, 0, 0.12);
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(255, 199, 0, 0.5);
}

.float-link-alt:hover {
  background: rgba(255, 199, 0, 0.28);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--gold-glow);
}

.float-wa-admin {
  background: rgba(37, 211, 102, 0.15);
  border: 1.5px solid #25d366;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
}

.float-wa-admin:hover {
  background: rgba(37, 211, 102, 0.32);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.65);
}

@keyframes waPulseRing {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

.float-pulse-ring {
  position: absolute;
  inset: -3px;
  border: 2px solid #25d366;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  animation: waPulseRing 2s infinite ease-out;
  pointer-events: none;
}

.float-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 12px;
  background: rgba(8, 12, 28, 0.95);
  border: 1px solid var(--cyan-neon);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(6px);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 576px) {
  .floating-dock {
    bottom: 16px;
    right: 12px;
    gap: 8px;
  }

  .float-btn {
    padding: 9px 14px;
    font-size: 12px;
  }

  .float-tooltip {
    display: none;
  }
}

/* =========================================================
   SITE FOOTER (CYBER METALLIC BADGES & MULTI-COLUMN)
   ========================================================= */
.site-footer {
  position: relative;
  z-index: 100;
  background: rgba(4, 7, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1.5px solid var(--cyan-neon);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.9), var(--cyan-glow);
  margin-top: 70px;
  padding-top: 52px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1.1fr;
  gap: 32px;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--gold-primary);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(255, 199, 0, 0.35);
}

.footer-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-tag-footer {
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan-neon);
  background: rgba(0, 243, 255, 0.08);
  border: 1px solid rgba(0, 243, 255, 0.35);
  padding: 4px 10px;
  border-radius: 4px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--cyan-neon);
  padding-left: 6px;
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.footer-payment-sub {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
}

.payment-badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pay-chip {
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  background: rgba(0, 243, 255, 0.06);
  border: 1px solid rgba(0, 243, 255, 0.25);
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.qris-chip {
  background: rgba(255, 42, 95, 0.15);
  border-color: var(--red-neon);
  color: var(--red-neon);
}

.footer-bottom {
  margin-top: 44px;
  border-top: 1px solid rgba(0, 243, 255, 0.15);
  padding: 22px 24px;
  background: rgba(2, 4, 10, 0.95);
}

.footer-bottom-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #64748b;
}

.footer-bottom-container strong {
  color: var(--cyan-neon);
}

.footer-disclaimer {
  font-size: 11.5px;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 576px) {
  .site-footer {
    margin-top: 40px;
    padding-top: 36px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   FLOATING LIVE WINNER TOAST POPUP (OPTION A)
   ========================================================= */
.live-toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1600;
  width: calc(100vw - 32px);
  max-width: 340px;
  background: rgba(6, 10, 26, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--cyan-neon);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  border-radius: 2px;
  padding: 14px 16px 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), var(--cyan-glow);
  transform: translateY(40px) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.live-toast-container.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.toast-close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.toast-close-btn:hover {
  color: var(--cyan-neon);
}

.toast-badge-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.toast-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--emerald-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald-neon);
  animation: ledPulse 1.5s infinite;
}

.toast-badge-text {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: var(--emerald-neon);
  text-transform: uppercase;
}

.toast-platform-tag {
  margin-left: auto;
  font-size: 9.5px;
  font-weight: 800;
  color: var(--gold-primary);
  background: rgba(255, 199, 0, 0.12);
  border: 1px solid rgba(255, 199, 0, 0.35);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.toast-body {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(0, 243, 255, 0.1);
  border: 1.5px solid var(--cyan-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--cyan-glow);
  flex-shrink: 0;
}

.toast-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.toast-user-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toast-user-name {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.toast-time-badge {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
}

.toast-win-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.toast-win-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.toast-win-amount {
  font-size: 14px;
  font-weight: 900;
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(255, 199, 0, 0.5);
  letter-spacing: 0.5px;
}

.toast-game-row {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-neon);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 576px) {
  .live-toast-container {
    bottom: 16px;
    left: 12px;
    max-width: 290px;
    padding: 12px 14px 10px;
  }
}