:root {
  --bg: #02030c;
  --surface: rgba(255,255,255,0.03);
  --surface-alt: rgba(255,255,255,0.06);
  --text: #f8fbff;
  --muted: #9ea8c3;
  --primary: #7f5dff;
  --psn: #006FCD;
  --xbox: #107C10;
  --nintendo: #E60012;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.page-bg {
  position: fixed;
  inset: -20%;
  background: radial-gradient(circle at 20% 20%, rgba(127,93,255,0.2), transparent 40%),
              radial-gradient(circle at 80% 0%, rgba(0,111,205,0.2), transparent 45%);
  filter: blur(40px);
  z-index: -2;
}
.hero {
  padding: 3rem clamp(1rem,4vw,4rem);
  min-height: 70vh;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.nav-links { display:flex; gap:0.6rem; }
.logo { font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.nav-link { border: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1.4rem; border-radius: 999px; font-size: 0.9rem; }
.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem;
}
.eyebrow { letter-spacing: 0.3em; font-size: 0.75rem; text-transform: uppercase; color: var(--muted); }
.hero h1 { font-size: clamp(2.4rem, 7vw, 4.6rem); line-height: 1.1; margin: 0.5rem 0 1rem; }
.hero h1 span { color: var(--primary); }
.lead { color: rgba(255,255,255,0.78); margin-bottom: 1.5rem; }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn.primary { background: linear-gradient(120deg, var(--primary), #4fd5ff); color: #050505; box-shadow: 0 20px 50px rgba(127,93,255,0.4); }
.btn.secondary { width: 100%; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); }
.btn.ghost { border: 1px solid rgba(255,255,255,0.3); }
.btn.pill { padding: 0.5rem 1.2rem; }
 .btn:hover { transform: translateY(-1px); filter: brightness(0.95); }
.btn[disabled] { opacity: 0.5; pointer-events: none; }
.hero-card {
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.hero-card .mini { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.75rem; color: var(--muted); }
.hero-card .micro { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.8rem; }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 0.5rem;
  padding: 1rem clamp(1rem,4vw,4rem);
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.trust-item { text-align: center; color: rgba(255,255,255,0.8); }
.section { padding: 4rem clamp(1rem,4vw,4rem); }
.section-head { max-width: 720px; margin: 0 auto 2rem; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.3rem; }
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
}
.compare-card {
  position: relative;
  border-radius: 28px;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.compare-card:hover { transform: scale(1.03); box-shadow: 0 30px 80px rgba(0,0,0,0.45); }
.compare-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.compare-card.psn { border-top: 3px solid var(--psn); box-shadow: 0 30px 70px rgba(0,111,205,0.25); }
.compare-card.xbox { border-top: 3px solid var(--xbox); box-shadow: 0 30px 70px rgba(16,124,16,0.25); }
.compare-card.nintendo { border-top: 3px solid var(--nintendo); box-shadow: 0 30px 70px rgba(230,0,18,0.25); }
.tag { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.tag::before { content: ""; width: 22px; height: 22px; border-radius: 50%; background: currentColor; opacity: 0.2; }
.tag.psn { color: var(--psn); }
.tag.xbox { color: var(--xbox); }
.tag.nintendo { color: var(--nintendo); }
.compare-card ul { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 0.8rem; }
.compare-card li { display: flex; justify-content: space-between; align-items: center; border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 0.8rem 1rem; }
.compare-card li.highlight { border-width: 2px; }
.compare-card li span { font-weight: 600; }
.micro { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }
.analytics { background: rgba(255,255,255,0.02); }
.analytics-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 1rem; }
.analytic-card { text-align: center; padding: 1rem; border-radius: 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); }
.analytic-card strong { font-size: 1.8rem; display: block; }
.section.alt { background: rgba(255,255,255,0.02); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.4rem; }
.why-grid article { background: rgba(255,255,255,0.05); border-radius: 20px; padding: 1.3rem; border: 1px solid rgba(255,255,255,0.05); }
.columns { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1rem; }
details { background: rgba(255,255,255,0.03); border-radius: 16px; padding: 1rem 1.2rem; border: 1px solid rgba(255,255,255,0.05); }
.footer { text-align: center; padding: 2rem 1rem; font-size: 0.85rem; color: var(--muted); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-links { margin-top: 1rem; display: flex; justify-content: center; gap: 1rem; }
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(2,3,12,0.9); padding: 0.8rem; z-index: 10; }
.sticky-cta a { display: block; text-align: center; padding: 0.9rem; border-radius: 999px; background: linear-gradient(120deg, var(--primary), #4fd5ff); color: #050505; font-weight: 600; }
@media (max-width: 720px) {
  .sticky-cta { display: block; }
}

.sticky-cta.visible { transform: translateY(0); }
.sticky-cta { transform: translateY(110%); transition: transform 0.3s ease; }

.email-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: min(320px, 90vw);
  padding: 1.8rem;
  border-radius: 24px;
  background: rgba(2,3,12,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 20;
}
.email-popup.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.email-popup .mini {
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted);
}
.email-popup form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.email-popup input {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.email-popup button[type="submit"] {
  border: none;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  background: linear-gradient(120deg, var(--primary), #4fd5ff);
  color: #050505;
  font-weight: 600;
}
.email-popup .close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 720px) {
  .email-popup {
    left: 1rem;
    right: 1rem;
    bottom: 4.5rem;
  }
}


.spotlight-section {
  background: rgba(255,255,255,0.01);
}
.spotlight-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(120deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  box-shadow: 0 35px 80px rgba(0,0,0,0.35);
}
.spotlight-cover {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}
.spotlight-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spotlight-cover .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.spotlight-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.spotlight-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}
.spotlight-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.spotlight-actions .btn {
  flex: 1;
  min-width: 160px;
  justify-content: center;
}



.live-activity {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.activity-pill {
  flex: 1;
  min-width: 180px;
  padding: 0.9rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}
.activity-pill p {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.activity-pill strong {
  font-size: 1.8rem;
}



.drop-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
#activity-timer {
  color: var(--muted);
  font-size: 0.85rem;
}
#activity-badge {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.badge-hot {
  background: rgba(255,85,73,0.15);
  border-color: rgba(255,85,73,0.4);
  color: #ff7468;
}
.badge-pulse {
  animation: pulse 1s ease-in-out infinite alternate;
}
@keyframes pulse {
  from { box-shadow: 0 0 0 rgba(255,116,104,0.4); }
  to { box-shadow: 0 0 15px rgba(255,116,104,0.8); }
}


#activity-count { display:block; color: var(--muted); font-size: 0.85rem; }


.live-drop-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.timer-icon { font-size: 0.95rem; }
.timer-debug { color: #ff4d4f; font-size: 0.7rem; padding-left: 0.4rem; }
#activity-count {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 0.85rem;
}


.drop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drop-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.drop-subtitle {
  color: rgba(255,255,255,0.85);
  margin-top: 0.4rem;
}
.drop-pill-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0.8rem 0;
}
.pill {
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.pill-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
}
.drop-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.drop-benefits li { display: flex; align-items: center; gap: 0.4rem; }
