:root {
  --accent: #a347ff;
  --accent-hover: #b870ff;
  --bg: #000000;
  --text: #f5f5f5;
  --nav-scroll-offset: 100px;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-scroll-offset);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; margin: 0; overflow-x: hidden; line-height: 1.6; }

.hero-bg-container { position: absolute; top: 0; left: 0; width: 100%; height: 70vh; z-index: -3; background: #000000; overflow: hidden; pointer-events: none; mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 100%); -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 100%); }
#topo-canvas { width: 100%; height: 100%; display: block; opacity: 0.6; }

header.top-nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; transition: padding 0.4s ease, background-color 0.4s ease, border 0.4s ease; padding: 20px 50px; }
header.top-nav:not(.scrolled) { background-color: rgba(0, 0, 0, 0.5); border-bottom: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
header.top-nav.scrolled { padding: 20px 0; background-color: transparent; border-bottom: 1px solid transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
header.top-nav .nav-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0; margin: 0 auto; border-radius: 0px; border: 1px solid transparent; background: transparent; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
header.top-nav.scrolled .nav-inner { width: 85%; padding: 15px 30px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255, 255, 255, 0.05); border-top: 1px solid rgba(255, 255, 255, 0.4); border-left: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 2px 15px rgba(255, 255, 255, 0.1); border-radius: 24px; }
@media (max-width: 768px) {
  header.top-nav { padding: 15px 20px; }
  header.top-nav.scrolled .nav-inner { width: 95%; padding: 10px 15px; }
  :root {
    --nav-scroll-offset: 84px;
  }
}

.logo { font-weight: 900; font-size: 24px; color: #fff; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; text-decoration: none;}
.logo-animated { text-decoration: none; }
.logo-anim-stage {
  position: relative;
  width: min(220px, 52vw);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.logo-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.logo-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 22px rgba(163, 71, 255, 0.45);
  opacity: 0;
  will-change: transform, opacity;
}
.logo-brand-text {
  position: relative;
  z-index: 2;
  font-weight: 900;
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 0 24px rgba(163, 71, 255, 0.55), 0 0 48px rgba(163, 71, 255, 0.2);
  white-space: nowrap;
  opacity: 0;
  animation: logo-brand-in 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}
@keyframes logo-brand-in {
  from {
    opacity: 0;
    filter: blur(16px);
    letter-spacing: 0.42em;
    transform: scale(0.86);
  }
  to {
    opacity: 1;
    filter: blur(0);
    letter-spacing: 0.06em;
    transform: scale(1);
  }
}
@keyframes logo-dot-from-left {
  0% {
    transform: translate(-130px, var(--dy, 0)) scale(0.35);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  38% {
    transform: translate(var(--tx, -8px), var(--dy, 0)) scale(1);
    opacity: 1;
  }
  52% {
    transform: translate(0, 0) scale(0.15);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) scale(0);
    opacity: 0;
  }
}
@keyframes logo-dot-from-right {
  0% {
    transform: translate(130px, var(--dy, 0)) scale(0.35);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  38% {
    transform: translate(var(--tx, 8px), var(--dy, 0)) scale(1);
    opacity: 1;
  }
  52% {
    transform: translate(0, 0) scale(0.15);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) scale(0);
    opacity: 0;
  }
}
.logo-dot--l1 {
  --dy: -9px;
  --tx: -14px;
  animation: logo-dot-from-left 3.4s ease-in-out infinite;
  animation-delay: 0s;
}
.logo-dot--l2 {
  --dy: 2px;
  --tx: -22px;
  animation: logo-dot-from-left 3.4s ease-in-out infinite;
  animation-delay: 0.08s;
}
.logo-dot--l3 {
  --dy: 10px;
  --tx: -10px;
  animation: logo-dot-from-left 3.4s ease-in-out infinite;
  animation-delay: 0.16s;
}
.logo-dot--l4 {
  --dy: -4px;
  --tx: -28px;
  animation: logo-dot-from-left 3.4s ease-in-out infinite;
  animation-delay: 0.04s;
}
.logo-dot--r1 {
  --dy: -8px;
  --tx: 16px;
  animation: logo-dot-from-right 3.4s ease-in-out infinite;
  animation-delay: 0s;
}
.logo-dot--r2 {
  --dy: 4px;
  --tx: 24px;
  animation: logo-dot-from-right 3.4s ease-in-out infinite;
  animation-delay: 0.1s;
}
.logo-dot--r3 {
  --dy: 11px;
  --tx: 12px;
  animation: logo-dot-from-right 3.4s ease-in-out infinite;
  animation-delay: 0.06s;
}
.logo-dot--r4 {
  --dy: -11px;
  --tx: 20px;
  animation: logo-dot-from-right 3.4s ease-in-out infinite;
  animation-delay: 0.14s;
}
@media (prefers-reduced-motion: reduce) {
  .logo-dot {
    display: none;
    animation: none;
  }
  .logo-brand-text {
    animation: none;
    opacity: 1;
    filter: none;
    letter-spacing: 0.06em;
    transform: none;
  }
}
.right-nav, .nav-links { display: flex; gap: 20px; align-items: center; }
@media (max-width: 768px) { .nav-links a:not(.dashboard-btn):not(.lang-switch) { display: none; } }
.nav-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s; cursor: pointer;}
.nav-links a:hover { color: #fff; }

.lang-switch { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 20px; cursor: pointer; transition: 0.3s; font-size: 13px; font-weight: bold; color: #fff; user-select: none; }
.lang-switch:hover { background: rgba(163, 71, 255, 0.2); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(163, 71, 255, 0.3); }
.discord-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: default;
  transition: 0.3s;
  font-size: 13px;
  font-weight: bold;
  color: #5865f2 !important;
  text-decoration: none;
  user-select: none;
}
.discord-nav-btn:hover {
  background: rgba(88, 101, 242, 0.15);
  border-color: rgba(88, 101, 242, 0.45);
}

.dashboard-btn { display: inline-block; background: var(--accent); color: #fff !important; padding: 8px 20px; border-radius: 30px; font-weight: 700 !important; transition: 0.3s; cursor: pointer; text-decoration: none; font-family: 'Inter', sans-serif; border: none; }
.dashboard-btn:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(163, 71, 255, 0.4); }

.container { max-width: 1200px; margin: 0 auto; padding: 140px 20px 50px; text-align: center; position: relative; z-index: 1;}
.rules-container { max-width: 800px; margin: 120px auto 50px; padding: 40px; background: rgba(20, 20, 20, 0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); text-align: left; }
.rules-container h1 { color: #fff; font-size: 36px; margin-bottom: 30px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.rules-container h3 { color: var(--accent); margin-top: 30px; margin-bottom: 10px; }
.rules-container p, .rules-container li { color: rgba(255,255,255,0.7); margin-bottom: 10px; }

.hero-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 50px; margin-bottom: 80px; text-align: left; }
.hero-text { flex: 1.2; }
.badge { display: inline-block; padding: 8px 18px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.15); background: rgba(0,0,0,0.4); color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 30px; backdrop-filter: blur(8px); box-shadow: 0 4px 15px rgba(0,0,0,0.3);}
h1 { font-size: clamp(48px, 6vw, 84px); font-weight: 900; margin-top: 0; margin-bottom: 20px; letter-spacing: -0.04em; line-height: 1.1; color: #fff; text-shadow: 0 10px 30px rgba(0,0,0,0.5);}
.subtitle { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.6); max-width: 650px; line-height: 1.6; margin-inline: 0; margin-bottom: 0;}
.hero-video-container {
  flex: 1;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(163, 71, 255, 0.2);
  position: relative;
  background: #000;
}
.hero-showcase-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  background: #000;
}
.hero-showcase-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 0 20px rgba(163, 71, 255, 0.35));
}
.hero-showcase-titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.hero-showcase-brand {
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.45), 0 0 60px rgba(163, 71, 255, 0.35);
  line-height: 1;
}
.hero-showcase-game {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 900px) { .hero-wrapper { flex-direction: column; text-align: center; gap: 40px; } .hero-text .subtitle { margin-inline: auto; margin-bottom: 20px; } .hero-video-container { max-width: 100%; } }

.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.016) 0%, rgba(255, 255, 255, 0.002) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.42), inset 0 0 24px rgba(255, 255, 255, 0.008);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

#products {
  scroll-margin-top: var(--nav-scroll-offset);
}
#features {
  scroll-margin-top: var(--nav-scroll-offset);
}
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; text-align: left; }
.grid-products-single {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.card { padding: 35px; cursor: pointer; }
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(163, 71, 255, 0.32);
  border-top-color: rgba(163, 71, 255, 0.55);
  border-left-color: rgba(163, 71, 255, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), 0 0 28px rgba(163, 71, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.004) 100%);
}
.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.32);
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}
.card:hover .card-icon { border-color: var(--accent); box-shadow: 0 0 15px rgba(163, 71, 255, 0.3); }
.card h3 { margin: 0 0 10px 0; font-size: 22px; color: #fff; font-weight: 700; letter-spacing: -0.02em;}
.card p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; margin: 0; }
.purchase-link { margin-top: 25px; font-weight: 600; color: #fff; font-size: 14px; display: flex; align-items: center; gap: 8px; transition: 0.3s;}
.card:hover .purchase-link { color: var(--accent); }
.purchase-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.card:hover .purchase-link svg { transform: translateX(6px); }

.bottom-section-wrapper { position: relative; margin-top: 50px; padding-bottom: 40px; }
.dots-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; pointer-events: none; background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(to bottom, transparent 0%, black 15%); -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%); }

.features-header { font-size: clamp(32px, 4vw, 42px); font-weight: 800; color: #fff; margin-bottom: 50px; text-align: left; letter-spacing: -0.03em;}
.bento-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.bento-features.bottom { grid-template-columns: 1fr 1.5fr; margin-top: 24px; }
@media (max-width: 900px) { .bento-features, .bento-features.bottom { grid-template-columns: 1fr; } }
.bento-box { padding: 45px; border-radius: 32px; }
.bento-box h2 { margin-top: 0; font-size: 24px; color: #fff; letter-spacing: -0.02em; margin-bottom: 15px;}
.bento-box p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; margin-bottom: 30px; position: relative; z-index: 2;}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; position: relative; z-index: 2;}
.stat-item .val { font-size: 42px; font-weight: 900; color: #fff; line-height: 1.1; }
.stat-item .desc { font-size: 13px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px;}


.aim-scene { width: 100%; height: 260px; background: radial-gradient(circle at center, #111, #000); border-radius: 20px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); box-shadow: inset 0 0 30px #000;}
.aim-player { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 4px;}
.aim-head { position: relative; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); transition: 0.2s;}
.aim-body { width: 40px; height: 50px; border-radius: 8px; background: rgba(255,255,255,0.05); }
.aim-crosshair { position: absolute; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; top: 20%; left: 20%; pointer-events: none; animation: aimPath 6s infinite cubic-bezier(0.4, 0, 0.2, 1); display: flex; justify-content: center; align-items: center;}
.aim-crosshair::before { content: ''; position: absolute; width: 4px; height: 4px; background: #fff; border-radius: 50%; }
@keyframes aimPath { 0% { top: 20%; left: 20%; border-color: rgba(255,255,255,0.3); transform: scale(1);} 20% { top: 60%; left: 30%; border-color: rgba(255,255,255,0.3); transform: scale(1);} 35% { top: calc(50% - 27px); left: 50%; transform: translate(-50%, -50%) scale(0.8); border-color: var(--accent); box-shadow: 0 0 15px rgba(163, 71, 255, 0.6); } 40% { top: calc(50% - 27px); left: 50%; transform: translate(-50%, -50%) scale(1.2); border-color: #ff3333; box-shadow: 0 0 20px rgba(255, 51, 51, 0.8); } 45% { top: calc(50% - 35px); left: 48%; transform: translate(-50%, -50%) scale(1); border-color: rgba(255,255,255,0.3); box-shadow: none; } 60% { top: 70%; left: 80%; border-color: rgba(255,255,255,0.3); } 100% { top: 20%; left: 20%; border-color: rgba(255,255,255,0.3); } }
.aim-head::after { content: ''; position: absolute; inset: -1px; border-radius: 50%; background: #ff3333; opacity: 0; animation: hitFlash 6s infinite; }
@keyframes hitFlash { 38% { opacity: 0; box-shadow: 0 0 0px #ff3333;} 40% { opacity: 1; box-shadow: 0 0 20px #ff3333;} 45% { opacity: 0; box-shadow: 0 0 0px #ff3333;} }

.img-comp-container { position: relative; width: 100%; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); background: #000; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.img-base, .img-comp-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.img-comp-overlay { z-index: 2; clip-path: inset(0 50% 0 0); }
.img-comp-slider { position: absolute; z-index: 3; width: 2px; height: 100%; background: var(--accent); top: 0; left: 50%; transform: translateX(-50%); cursor: ew-resize; }
.img-comp-slider-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 36px; height: 36px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: space-between; padding: 0 4px; box-shadow: 0 0 15px rgba(163, 71, 255, 0.6); }

.recoil-scene { width: 100%; height: 260px; background: rgba(0,0,0,0.3); border-radius: 20px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); display: flex;}
.recoil-half { flex: 1; position: relative; border-right: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;}
.recoil-half:last-child { border: none; }
.recoil-label { position: absolute; top: 15px; font-size: 11px; font-weight: bold; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.recoil-target { width: 30px; height: 30px; border: 2px dashed rgba(255,255,255,0.1); border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ch-bad, .ch-good { position: absolute; width: 20px; height: 20px; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; justify-content: center; align-items: center;}
.ch-bad::before, .ch-bad::after, .ch-good::before, .ch-good::after { content: ''; position: absolute; background: #fff; border-radius: 2px;}
.ch-bad::before, .ch-good::before { width: 100%; height: 2px; }
.ch-bad::after, .ch-good::after { width: 2px; height: 100%; }
.ch-bad { animation: recoilBad 2.5s infinite ease-out; }
.ch-good { animation: recoilGood 2.5s infinite ease-out; }
@keyframes recoilBad { 0%, 20% { transform: translate(-50%, -50%); opacity: 1; } 25% { transform: translate(-50%, -120%); opacity: 1; } 30% { transform: translate(-40%, -140%); } 35% { transform: translate(-60%, -150%); } 40% { transform: translate(-45%, -160%); opacity: 0; } 100% { transform: translate(-50%, -50%); opacity: 0; } }
@keyframes recoilGood { 0%, 20% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 25%, 40% { transform: translate(-50%, -50%) scale(1.1); filter: drop-shadow(0 0 8px var(--accent)); } 41%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; } }
.ch-bad::marker, .ch-good::marker { content: ''; position: absolute; width: 4px; height: 4px; background: #fff; border-radius: 50%; }
.recoil-half::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; border-radius: 50%; background: #ffcc00; opacity: 0; animation: muzzleFlash 2.5s infinite; }
@keyframes muzzleFlash { 0%, 24% { opacity: 0; box-shadow: none; } 25%, 35% { opacity: 1; box-shadow: 0 0 20px #ffcc00, 0 0 40px #ffcc00; } 40%, 100% { opacity: 0; box-shadow: none; } }

.undetected-scene { width: 100%; height: 200px; background: rgba(0,0,0,0.3); border-radius: 16px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: 20px; }
.cyber-shield-container { position: relative; width: 90px; height: 90px; display: flex; justify-content: center; align-items: center; }
.cyber-ring-1 { position: absolute; width: 100%; height: 100%; border: 2px dashed #2ecc71; border-radius: 50%; animation: spinRight 10s linear infinite; opacity: 0.4; }
.cyber-ring-2 { position: absolute; width: 75%; height: 75%; border: 2px dotted #2ecc71; border-radius: 50%; animation: spinLeft 8s linear infinite; opacity: 0.6; }
.shield-core { color: #2ecc71; z-index: 2; width: 40px; height: 40px; filter: drop-shadow(0 0 15px #2ecc71); animation: pulseShield 2s infinite alternate; }
.shield-core svg { width: 100%; height: 100%; stroke: currentColor; }
@keyframes spinRight { 100% { transform: rotate(360deg); } }
@keyframes spinLeft { 100% { transform: rotate(-360deg); } }
@keyframes pulseShield { 0% { filter: drop-shadow(0 0 10px #2ecc71) scale(1); } 100% { filter: drop-shadow(0 0 25px #2ecc71) scale(1.1); } }

.globe-container { position: absolute; right: -50px; bottom: -50px; width: 450px; height: 450px; pointer-events: none; z-index: 1;}
@media (max-width: 900px) { .globe-container { opacity: 0.3; } }

.site-footer { max-width: 1200px; margin: 50px auto 0; padding: 0 20px; position: relative; z-index: 10; }
.footer-block { background: rgba(18, 18, 18, 0.7); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 24px 30px; margin-bottom: 12px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); display: flex; align-items: center; }
.footer-top { flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
a.footer-logo {
  text-decoration: none;
  color: inherit;
}
.footer-logo span.light {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}
.logo-anim-stage--footer {
  width: min(200px, 46vw);
  height: 34px;
}
.logo-brand-text--footer {
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  letter-spacing: 0.05em;
}
.footer-desc { color: rgba(255, 255, 255, 0.6); font-size: 14px; max-width: 400px; line-height: 1.5; }
.footer-bottom { justify-content: space-between; }
@media (max-width: 768px) { .footer-bottom { flex-direction: column; gap: 20px; text-align: center; justify-content: center; } }
.footer-copy { color: rgba(255, 255, 255, 0.4); font-size: 13px; }
.footer-links-status { display: flex; align-items: center; gap: 25px; }
@media (max-width: 768px) { .footer-links-status { flex-direction: column; gap: 15px; } }
.footer-links { display: flex; gap: 15px; align-items: center; }
.footer-links a { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.status-badge-footer { display: flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 6px 14px; border-radius: 20px; font-size: 13px; color: #fff; font-weight: 500; }
.status-dot { width: 8px; height: 8px; background: #2ecc71; border-radius: 50%; box-shadow: 0 0 8px rgba(46, 204, 113, 0.6); animation: pulseGreen 1.5s infinite alternate;}
@keyframes pulseGreen {
 0% { box-shadow: 0 0 8px rgba(46, 204, 113, 0.4); }
 100% { box-shadow: 0 0 15px rgba(46, 204, 113, 0.8), 0 0 25px rgba(46, 204, 113, 0.4); }
}

.reveal { opacity: 0; visibility: hidden; }
.reveal.active { animation: fadeUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards; visibility: visible; }
@keyframes fadeUp { 0% { opacity: 0; transform: translateY(40px) scale(0.98); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
.grid .card.reveal:nth-child(1).active { animation-delay: 0s; }


.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.close-btn { position: absolute; top: 20px; right: 25px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); color: #aaa; width: 36px; height: 36px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s; z-index: 100;}
.close-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

.detailed-modal-card { width: 95%; max-width: 1000px; height: 90%; max-height: 700px; display: flex; transform: translateY(30px) scale(0.95); background: linear-gradient(135deg, rgba(15, 15, 15, 0.4) 0%, rgba(5, 5, 5, 0.2) 100%); transition: 0.3s ease; border-radius: 24px;}
.modal-overlay.active .detailed-modal-card { transform: translateY(0) scale(1); }
.modal-left { flex: 1.4; min-width: 0; background: rgba(0,0,0,0.3); border-right: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; justify-content: center; padding: 20px;}
.main-media-view { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; background: #000; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); margin-bottom: 20px;}
.main-media-view img { max-width: 100%; max-height: 100%; object-fit: contain; position: absolute;}
.main-media-view iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;}
.nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); width: 40px; height: 40px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; z-index: 10; user-select: none;}
.nav-arrow:hover { background: rgba(255, 255, 255, 0.15); color: #fff; border-color: rgba(163, 71, 255, 0.4); box-shadow: 0 0 10px rgba(163, 71, 255, 0.3);}
.prev-arrow { left: 15px; } .next-arrow { right: 15px; }
.media-thumbnails { height: 80px; display: flex; gap: 12px; padding-bottom: 12px; overflow-x: auto;}
.media-thumbnails::-webkit-scrollbar { height: 4px; }
.media-thumbnails::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }
.thumb { width: 120px; height: 100%; flex-shrink: 0; border-radius: 8px; border: 2px solid transparent; cursor: pointer; overflow: hidden; transition: 0.2s; position: relative; opacity: 0.6; background: #000;}
.thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8;}
.thumb.active, .thumb:hover { opacity: 1; border-color: var(--accent); }
.thumb.active img, .thumb:hover img { opacity: 1; }
.thumb-play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 30px; height: 30px; background: rgba(163, 71, 255, 0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; pointer-events: none; box-shadow: 0 0 10px rgba(163, 71, 255, 0.5);}

.modal-right { flex: 1; min-width: 360px; padding: 40px; display: flex; flex-direction: column; position: relative; text-align: left; background: rgba(0,0,0,0.2); overflow-y: auto;}
.modal-right::-webkit-scrollbar { width: 6px; } .modal-right::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
.modal-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px;}
.modal-header img { height: 48px; width: 48px; border-radius: 12px; object-fit: cover; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.5);}
.modal-game-title { font-size: 26px; font-weight: 800; color: #fff; margin: 0; letter-spacing: -0.02em; word-break: break-word;}
.modal-description { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.05);}
.modal-description ul { padding-left: 0; margin: 0; list-style: none;}
.modal-description ul li { margin-bottom: 8px; position: relative; padding-left: 20px;}
.modal-description ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold;}
.selection-group { margin-bottom: 20px; }
.selection-group label { display: block; color: rgba(255,255,255,0.5); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 12px;}

.duration-btns { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: 10px;}
.dur-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 12px; border-radius: 12px; cursor: pointer; text-align: center; transition: 0.2s; font-family: 'Inter', sans-serif;}
.dur-btn span { font-weight: 700; font-size: 13px;}
.dur-btn .dur-price { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; display: block;}
.dur-btn.active, .dur-btn:hover { background: rgba(163, 71, 255, 0.2); border-color: var(--accent); box-shadow: inset 0 0 15px rgba(163, 71, 255, 0.2); }
.dur-btn.active .dur-price { color: var(--accent); }

.payment-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px;}
.pay-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 14px; border-radius: 12px; cursor: pointer; text-align: left; transition: 0.2s;}
.pay-btn.active, .pay-btn:hover { background: rgba(163, 71, 255, 0.2); border-color: var(--accent); }
.pay-btn .method-title { font-weight: 600; font-size: 14px; display: block;}
.pay-btn .fee-note { font-size: 12px; color: rgba(255,255,255,0.5);}

.purchase-action { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 15px;}
.total-block { display: flex; justify-content: space-between; align-items: flex-end;}
.total-block .label { color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;}
.total-block .price-final { font-size: 32px; font-weight: 900; color: #fff; letter-spacing: -0.02em; line-height: 1;}
.btn-checkout { width: 100%; background: #fff; border: none; padding: 16px; border-radius: 12px; color: #000; font-weight: 800; font-size: 16px; cursor: pointer; transition: 0.3s; font-family: 'Inter', sans-serif;}
.btn-checkout:hover { background: #e0e0e0; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255,255,255,0.15); }

.simple-modal-card { width: 95%; max-width: 450px; background: linear-gradient(135deg, rgba(15, 15, 15, 0.4) 0%, rgba(5, 5, 5, 0.2) 100%); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.05); border-top: 1px solid rgba(255,255,255,0.2); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.02); border-radius: 24px; padding: 40px; position: relative; transform: translateY(30px) scale(0.95); transition: 0.3s ease; display: flex; flex-direction: column; text-align: center; margin: auto; }
.modal-overlay.active .simple-modal-card { transform: translateY(0) scale(1); }
.simple-modal-card input { width: 100%; padding: 15px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: #fff; margin-bottom: 20px; font-family: 'Inter', sans-serif; font-size: 15px;}
.simple-modal-card input:focus { outline: none; border-color: var(--accent); }
.btn-action { width: 100%; background: var(--accent); border: none; padding: 16px; border-radius: 12px; color: #fff; font-weight: 800; font-size: 16px; cursor: pointer; transition: 0.3s; margin-top: 10px;}
.btn-action:hover { background: var(--accent-hover); box-shadow: 0 10px 20px rgba(163, 71, 255, 0.3); transform: translateY(-2px);}

.dash-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; margin-bottom: 20px;}
.dash-stat { background: rgba(0,0,0,0.5); padding: 15px 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); margin-bottom: 15px; text-align: left;}
.dash-stat label { color: rgba(255,255,255,0.5); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 5px;}
.dash-stat .val { color: #fff; font-size: 18px; font-weight: bold; font-family: monospace;}

@media (max-width: 900px) { 
 .detailed-modal-card { flex-direction: column; overflow-y: auto; overflow-x: hidden; height: auto; max-height: 95vh;} 
 .modal-left { flex: none; padding: 15px; }
 .modal-right { flex: none; min-width: 100%; padding: 20px; overflow-y: visible; }
 .payment-btns { grid-template-columns: 1fr;} 
 .close-btn { top: 10px; right: 10px; background: rgba(0,0,0,0.8); }
}


.trust-ticker {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 40px auto 0;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.trust-ticker-viewport {
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 8%,
    #000 22%,
    #000 78%,
    transparent 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 8%,
    #000 22%,
    #000 78%,
    transparent 92%,
    transparent 100%
  );
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}
.trust-ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: trust-ticker-scroll 50s linear infinite;
}
@keyframes trust-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .trust-ticker-track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
  }
  .trust-ticker-segment[aria-hidden="true"] {
    display: none;
  }
  .trust-ticker-viewport {
    height: auto;
    min-height: 40px;
    padding: 8px 0;
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }
}
.trust-ticker-segment {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.trust-ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 1.5rem;
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(163, 71, 255, 0.92);
  font-family: "Inter", system-ui, sans-serif;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .trust-ticker-item {
    margin-right: 3rem;
    font-size: 0.875rem;
  }
}
.trust-ticker-item svg {
  flex-shrink: 0;
  color: inherit;
}