/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= GLOBAL ================= */
body {
  font-family: 'Inter', sans-serif;
  background: #050507;
  color: #e5e7eb;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links a {
  margin: 0 18px;
  text-decoration: none;
  color: #cbd5f5;
  font-size: 13px;
  font-weight: 500;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  padding: 10px 22px;
  background: #ff2a2a;
  color: black;
  border: none;
  border-radius: 22px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* BACKGROUND */
.bg {
  position: absolute;
  inset: 0;
}

.bg.base {
  background: linear-gradient(135deg, #0a050d, #050507, #000);
}

.bg.accent {
  background: radial-gradient(circle at top left, rgba(255,40,40,0.35), transparent 55%);
}

.bg.accent-2 {
  background: radial-gradient(circle at bottom right, rgba(255,40,40,0.25), transparent 60%);
}

.bg.vignette {
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.9) 70%);
}

.bg.grain {
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 0.95;
}

.hero-content h1 span {
  color: #ff2a2a;
}

.hero-content p {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.6;
  color: #d1d5db;
}

/* CTA */
.cta {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.primary,
.secondary {
  padding: 18px 44px;
  border-radius: 44px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.primary {
  background: #ff2a2a;
  color: black;
  box-shadow: 0 0 40px rgba(255,42,42,0.35);
}

.secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
}

/* POWER SECTION */
.power {
  padding: 140px 20px;
}

.power-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.power-card {
  background: linear-gradient(180deg, #0b0b10, #050507);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 34px;
}

.power-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
}

.power-card p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #a1a1aa;
}

/* STATEMENT */
.statement {
  padding: 160px 20px;
  text-align: center;
}

.statement h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
}

.statement p {
  margin-top: 30px;
  font-size: 18px;
  color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}
/* ================= PAGE HERO ================= */
.page-hero {
  position: relative;
  padding: 180px 20px 120px;
  text-align: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -1px;
}

.page-hero p {
  margin-top: 24px;
  font-size: 18px;
  color: #d1d5db;
}

/* ================= CONTENT ================= */
.content-section {
  padding: 140px 20px;
}

.content-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.content-card {
  background: linear-gradient(180deg, #0b0b10, #050507);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px;
  transition: transform 0.25s ease, border 0.25s ease;
}

.content-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.25);
}

.content-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
}
/* ================= DOWNLOADS ================= */
.download-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.download-card {
  position: relative;
  background: linear-gradient(180deg, #0b0b10, #050507);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px;
  transition: transform 0.25s ease, border 0.25s ease;
}

.download-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.25);
}

.download-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
}

.download-card p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #a1a1aa;
}

/* BUTTONS */
.download-btn {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 28px;
  border-radius: 28px;
  font-size: 13px;
  font-weight: 600;
  background: #ff2a2a;
  color: black;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(255,42,42,0.35);
}

.download-btn:hover {
  box-shadow: 0 0 55px rgba(255,42,42,0.6);
}

/* LOCKED */
.download-card.locked {
  opacity: 0.7;
}

.download-btn.disabled {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  box-shadow: none;
  cursor: not-allowed;
}

/* TAGS */
.tag.free {
  background: rgba(255,255,255,0.1);
  color: white;
}

.tag.premium {
  background: rgba(255,42,42,0.15);
  color: #ff2a2a;
}
/* ================= AI HUB ================= */
.ai-hub {
  padding: 160px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.hub-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
}

.hub-subtitle {
  margin-top: 20px;
  font-size: 18px;
  color: #a1a1aa;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ai-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.ai-card {
  background: linear-gradient(180deg, #0b0b10, #050507);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  text-align: left;
}

.ai-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  margin-bottom: 18px;
}

.ai-card ul {
  list-style: none;
}

.ai-card li {
  margin-bottom: 12px;
}

.ai-card a {
  text-decoration: none;
  color: #d1d5db;
  font-size: 15px;
}

.ai-card a:hover {
  color: #ff2a2a;
}
/* ================= COMMUNITY ================= */
.community-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.community-card {
  background: linear-gradient(180deg, #0b0b10, #050507);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 40px;
}

.community-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
}

.community-card p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #a1a1aa;
}

.community-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 30px;
  border-radius: 28px;
  font-size: 13px;
  font-weight: 600;
  background: #ff2a2a;
  color: black;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(255,42,42,0.35);
}

.community-btn.secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: none;
}
/* ===== POLISH ===== */
a, button {
  transition: all 0.25s ease;
}

.power-card,
.content-card,
.ai-card,
.community-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.power-card:hover,
.content-card:hover,
.ai-card:hover,
.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* Smooth page load */
body {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ================= TYPOGRAPHY FIX ================= */

/* Headings */
.statement h2 {
  max-width: 900px;
  margin: 0 auto 18px auto;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Paragraph text (this fixes bulging) */
.statement p {
  max-width: 760px;              /* LIMIT WIDTH */
  margin: 0 auto 28px auto;
  font-size: 16px;               /* Slightly smaller */
  line-height: 1.7;              /* Better readability */
  color: #b3b3b3;                /* Softer contrast */
  font-weight: 400;              /* Avoid heaviness */
}

/* Cards text */
.power-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #a8a8b3;
  font-weight: 400;
}

/* Card titles */
.power-card h3 {
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* CTA button balance */
.statement .primary {
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 0 18px rgba(255, 42, 42, 0.45);
}

/* Prevent text stretching on ultra-wide screens */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
/* ================= LOGIN OVERLAY (SAAS STYLE) ================= */

.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 7, 0.7);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9999;
}

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

/* LOGIN CARD */
.login-modal {
  background: linear-gradient(180deg, #0f1016, #08080c);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 36px 34px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.login-overlay.active .login-modal {
  transform: scale(1);
  opacity: 1;
}

/* CLOSE BUTTON */
.login-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  color: #9ca3af;
  cursor: pointer;
}
.login-modal h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
}

.login-sub {
  margin-top: 6px;
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
}

/* INPUTS */
.login-modal input {
  width: 100%;
  padding: 14px 16px;
  margin-top: 14px;
  border-radius: 10px;
  background: #0b0c11;
  border: 1px solid rgba(255,255,255,0.14);
  color: #e5e7eb;
  font-size: 14px;
}

.login-modal input::placeholder {
  color: #6b7280;
}

.login-modal input:focus {
  outline: none;
  border-color: #ff2a2a;
}

/* PRIMARY LOGIN BUTTON */
.login-btn {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  background: linear-gradient(180deg, #ff5a5a, #ff2a2a);
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: black;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255,42,42,0.45);
}
.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: #ffffff;
  color: #111827;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.google-btn img {
  width: 18px;
  height: 18px;
}
.jersey-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 600;          /* NOT bold */
  letter-spacing: -0.01em;   /* Pull letters together */
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 420px;          /* STOP stretching */
  margin: 0 auto 12px;
}
.jersey-name {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em; /* small spacing only */
  line-height: 1.3;
  text-transform: uppercase;
}
.jersey-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #b3b3b3;
  max-width: 460px;
  margin: 0 auto;
  font-weight: 400;
}
.power-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 34px;
}
.power-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.power-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #b0b0b0;
  max-width: 90%;
  margin-bottom: 18px;
}
.power-card .primary {
  align-self: flex-start;      /* NOT full width */
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 42, 42, 0.35);
}
.power-card .secondary {
  align-self: flex-start;
  padding: 10px 22px;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
}
.power-card .secondary {
  align-self: flex-start;
  padding: 10px 22px;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
}
/* ================= FOOTER CENTER ================= */

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;        /* horizontal center */
  justify-content: center;    /* vertical balance */
  text-align: center;
  padding: 40px 20px;
}

.footer p {
  margin: 6px 0;
  max-width: 720px;           /* prevents text stretching */
  color: #a1a1aa;
}

.footer .small {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.85;
}
.google-btn {
  height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
}
.divider {
  margin: 20px 0;
  text-align: center;
  position: relative;
}

.divider span {
  font-size: 12px;
  color: #9ca3af;
  background: #08080c;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.login-modal input {
  height: 46px;
  padding: 0 14px;
  margin-top: 12px;
  font-size: 14px;
}
.login-btn {
  margin-top: 20px;
  height: 46px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(255,42,42,0.35);
}
.login-note {
  margin-top: 14px;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}
.login-modal h3 {
  margin-bottom: 4px;
}

.login-sub {
  margin-bottom: 18px;
}
/* ================= JERSEY SHOWCASE ================= */

.jersey-showcase {
  padding: 100px 20px;
  text-align: center;
  background: radial-gradient(circle at top, #140b0b, #050507);
}

.jersey-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.jersey-sub {
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 60px;
}

/* MAIN JERSEY */
.jersey-main {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.jersey-image {
  position: relative;
}

.jersey-image img {
  width: 280px;
  filter: drop-shadow(0 20px 40px rgba(255,80,0,0.25));
}

.jersey-image span {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #ff6a00;
}

/* DETAILS */
.jersey-details {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.detail-card {
  background: linear-gradient(180deg, #0b0b10, #050507);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px;
}

.detail-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.detail-card p {
  font-size: 13px;
  color: #c4c4c4;
}

/* CTA */
.jersey-cta {
  display: inline-block;
  margin-top: 60px;
  padding: 14px 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5a2a, #ff2a2a);
  color: black;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 0 30px rgba(255,42,42,0.45);
}
/* ================= HERO SPLIT ================= */

.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

/* Founder image */
.hero-founder img {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.1);
  filter: contrast(1.05) saturate(1.05);
}

/* Mobile fix */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-founder {
    margin-top: 40px;
  }
}
.founder-tag {
  margin-top: 12px;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}
/* ================= HERO SPLIT FIX ================= */

.hero-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 80px;
}

/* LEFT TEXT */
.hero-left h1 {
  margin-bottom: 20px;
}

.hero-left p {
  max-width: 520px;
}

/* RIGHT IMAGE */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-right img {
  width: 100%;
  max-width: 300px;
  border-radius: 18px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.1);
}

/* FOUNDER BADGE */
.founder-badge {
  position: absolute;
  bottom: -14px;
  background: rgba(0,0,0,0.75);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: #e5e7eb;
  border: 1px solid rgba(255,255,255,0.15);
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right {
    margin-top: 40px;
  }

  .hero-left p {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ================= GAMING FOOTER ================= */

.gaming-footer {
  padding: 36px 20px;
  text-align: center;
  background: linear-gradient(180deg, #050507, #020203);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.gaming-footer .footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;     /* esports feel */
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}
/* ================= DISCLAIMER ================= */

.disclaimer {
  padding: 28px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  line-height: 1.7;
  color: #9ca3af;
  background: linear-gradient(180deg, #050507, #020203);
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 100%;
}

/* Limit text width for readability */
.disclaimer {
  max-width: 900px;
  margin: 0 auto;
}

/* Optional subtle emphasis */
.disclaimer strong {
  color: #d1d5db;
  font-weight: 500;
}
.gaming-card {
  background: linear-gradient(180deg, #0b0b10, #050507);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.gaming-card {
  background: linear-gradient(180deg, #0b0b10, #050507);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.gaming-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: #b3b3b3;
  max-width: 92%;
}
.premium-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #ff3b3b;
}
.gaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: stretch;
}
.gaming-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.25);
}
/* ================= CARD ICON ================= */

.card-icon {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 10px;
  opacity: 0.85;
}
/* ================= TECH PAGE ================= */

.page-hero {
  padding: 140px 20px 100px;
  text-align: center;
  background: radial-gradient(circle at top, #120b14, #050507 60%);
}

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
}

.page-hero p {
  margin-top: 14px;
  font-size: 15px;
  color: #9ca3af;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ================= TECH SECTION ================= */

.tech-section {
  padding: 90px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  margin-bottom: 36px;
  color: #ffffff;
  text-align: center;
}

/* ================= GRID ================= */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* ================= TECH CARD ================= */

.tech-card {
  background: linear-gradient(180deg, #0b0b10, #050507);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
  position: relative;
  overflow: hidden;
}

.tech-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,30,30,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tech-card:hover::after {
  opacity: 1;
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,30,30,0.35);
  box-shadow: 0 18px 60px rgba(255,30,30,0.15);
}

/* ================= CARD TEXT ================= */

.tech-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.tech-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #9ca3af;
}

/* ================= LINKS ================= */

.tech-card a {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #ff2e2e;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.tech-card a:hover {
  opacity: 0.85;
  transform: translateX(4px);
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {
  .page-hero {
    padding-top: 120px;
  }

  .tech-section {
    padding: 70px 16px;
  }
}
/* ================= ACCOUNT PANEL ================= */

.account-info {
  width: 100%;
  text-align: left;
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.8;
  margin: 20px 0;
}

.account-info strong {
  color: #fff;
}

.secondary-btn {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.premium-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.premium-card {
  background: linear-gradient(180deg, #0b0b10, #050507);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}

.premium-card ul {
  margin-top: 16px;
  line-height: 1.8;
  font-size: 14px;
  color: #cbd5f5;
}

.premium-card.highlight {
  border-color: #ff3b3b;
  text-align: center;
}

.price {
  font-size: 36px;
  font-weight: 700;
  margin: 20px 0;
}

.price span {
  font-size: 14px;
  color: #9ca3af;
}

.note {
  margin-top: 10px;
  font-size: 12px;
  color: #9ca3af;
}
/* ================= DOWNLOADS PAGE ================= */

.downloads-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

.downloads-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  margin-bottom: 24px;
  color: #fff;
  border-left: 4px solid #ff2e2e;
  padding-left: 12px;
}

/* GRID */
.downloads-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

/* CARD */
.download-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05),
    rgba(0,0,0,0.6)
  );
  border-radius: 18px;
  padding: 28px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08),
              0 20px 40px rgba(0,0,0,0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.download-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.download-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.download-card p {
  font-size: 14px;
  color: #bdbdbd;
  margin-bottom: 20px;
}

/* BUTTONS */
.download-card a,
.download-card button {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

/* FREE */
.download-card .primary {
  background: #ff2e2e;
  color: #000;
}

.download-card .primary:hover {
  box-shadow: 0 0 25px rgba(255,46,46,0.6);
}

/* APK */
.download-card .secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.download-card .secondary:hover {
  background: rgba(255,255,255,0.08);
}

/* LOCKED PREMIUM */
.download-card.locked {
  position: relative;
  opacity: 0.75;
}

.download-card.locked::after {
  content: "PREMIUM";
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,46,46,0.15);
  color: #ff2e2e;
  border: 1px solid rgba(255,46,46,0.4);
}

.download-card.locked button {
  background: transparent;
  color: #ff2e2e;
  border: 1px solid rgba(255,46,46,0.5);
}

.download-card.locked button:hover {
  background: rgba(255,46,46,0.15);
}

/* MOBILE */
@media (max-width: 600px) {
  .downloads-section {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}
.brand img {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255,0,0,0.4));
}
.hero-logo {
  width: 120px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 25px rgba(255,46,46,0.6));
}
/* ================= PREMIUM LOCK ================= */

.locked {
  position: relative;
  opacity: 0.65;
  pointer-events: auto;
}

.locked::after {
  content: "PREMIUM";
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,46,46,0.15);
  color: #ff2e2e;
  border: 1px solid rgba(255,46,46,0.5);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1px;
}

.locked button {
  background: transparent;
  border: 1px solid rgba(255,46,46,0.6);
  color: #ff2e2e;
}

.locked button:hover {
  background: rgba(255,46,46,0.15);
}
/* PREMIUM HOLD STATE */
button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: linear-gradient(135deg, #444, #222);
  color: #aaa;
  box-shadow: none;
}

button.disabled:hover {
  transform: none;
  box-shadow: none;
}
.download-card.locked {
  opacity: 0.6;
  border: 1px dashed rgba(255,255,255,0.2);
}

button.disabled {
  background: #333;
  color: #aaa;
  cursor: not-allowed;
  box-shadow: none;
}

button.disabled:hover {
  transform: none;
}
.yt-notify {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #ff0000, #b30000);
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  z-index: 9999;
  max-width: 300px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.yt-notify a {
  display: inline-block;
  margin-top: 6px;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.yt-notify .close {
  position: absolute;
  top: 6px;
  right: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.hidden {
  display: none;
}
.yt-notify {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}
/* === GLASS YOUTUBE NOTIFICATION === */
.yt-glass {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  z-index: 9999;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.35);
  animation: slideInLeft 0.6s ease;
  max-width: 320px;
}

.yt-dot {
  width: 10px;
  height: 10px;
  background: #ff0000;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff0000;
  animation: pulse 1.5s infinite;
}

.yt-content {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.yt-label {
  font-size: 10px;
  letter-spacing: 1px;
  color: #ff4d4d;
}

.yt-content strong {
  font-size: 14px;
  margin: 2px 0;
}

.yt-content a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  font-size: 12px;
}

.yt-close {
  cursor: pointer;
  font-size: 16px;
  opacity: 0.7;
}

.yt-close:hover {
  opacity: 1;
}

.hidden {
  display: none;
}

@keyframes slideInLeft {
  from {
    transform: translate(-50px, -50%);
    opacity: 0;
  }
  to {
    transform: translate(0, -50%);
    opacity: 1;
  }
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}
.updates-channel {
  max-width: 380px;
  margin: 60px auto;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
}

.updates-channel h3 {
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: 1px;
}

.update-item {
  padding: 10px 12px;
  margin-bottom: 10px;
  background: rgba(0,0,0,0.35);
  border-radius: 10px;
  font-size: 13px;
}

.update-item a {
  display: inline-block;
  margin-top: 4px;
  color: #00e5ff;
  font-size: 12px;
}

.update-tag {
  font-size: 9px;
  color: #ff5252;
  letter-spacing: 1px;
}
.visitor-eye {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.35);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
}
/* Community Buttons */
.community-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  text-decoration: none;
  color: white;
  background: #5865F2; /* default Discord-style */
  transition: 0.2s ease;
}

.community-btn:hover {
  transform: scale(1.05);
}

/* Secondary button (WhatsApp) */
.community-btn.secondary {
  background: #25D366; /* WhatsApp green */
  color: #fff;
}

/* Tertiary (generic) */
.community-btn.tertiary {
  background: #555;
  color: #fff;
}
.elite-sensi-card {
  background: radial-gradient(
    circle at top left,
    rgba(255, 60, 60, 0.12),
    rgba(0, 0, 0, 0.85)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #ff3c3c;
  border-radius: 14px;
  padding: 22px;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.elite-sensi-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
}

.elite-sensi-card p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 14px;
}

.elite-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.elite-btn:hover {
  background: #ff3c3c;
  border-color: #ff3c3c;
  box-shadow: 0 0 20px rgba(255,60,60,0.5);
}
.elite-sensi-card {
  max-width: 420px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05),
    rgba(0,0,0,0.3)
  );
  border-radius: 16px;
  padding: 22px 24px;
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* Red accent bar */
.elite-sensi-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 4px;
  background: #ff3c3c;
  border-radius: 4px;
}

.elite-sensi-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

.elite-sensi-card p {
  font-size: 13.5px;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 16px;
}

.elite-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.elite-btn:hover {
  background: #ff3c3c;
  border-color: #ff3c3c;
  transform: translateY(-1px);
}
.free-pro-tools {
  padding: 80px 6%;
  background: radial-gradient(circle at top, #111 0%, #000 70%);
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  text-align: center;
  letter-spacing: 2px;
}

.section-sub {
  text-align: center;
  opacity: 0.7;
  margin: 10px 0 50px;
}

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

.tool-card {
  background: linear-gradient(145deg, #0c0c0c, #050505);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.tool-card:hover {
  transform: translateY(-6px);
  border-color: #ff2d2d;
  box-shadow: 0 0 25px rgba(255,45,45,0.25);
}

.tool-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 16px;
}

.tool-card a {
  color: #ff2d2d;
  font-weight: 600;
  text-decoration: none;
}

.tool-card a:hover {
  text-decoration: underline;
}

.tools-note {
  margin-top: 40px;
  font-size: 13px;
  opacity: 0.6;
  text-align: center;
}
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tool-card {
    padding: 22px;
  }

  .tool-card h3 {
    font-size: 18px;
  }

  .tool-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .tool-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .tool-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .badge {
    font-size: 9px;
    padding: 3px 8px;
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 768px) {
  .tool-card::before {
    opacity: 0.6;
  }
}
@media (max-width: 768px) {
  .tool-card a {
    display: inline-block;
    padding: 12px 0;
    font-size: 15px;
  }
}
.dev-contact {
  padding: 80px 6%;
  background: radial-gradient(circle at top, #111 0%, #000 70%);
  text-align: center;
}

.dev-contact h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
}

.dev-sub {
  margin-top: 10px;
  opacity: 0.75;
  margin-bottom: 50px;
}

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

.contact-card {
  background: linear-gradient(145deg, #0c0c0c, #050505);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: #ff2d2d;
  box-shadow: 0 0 30px rgba(255,45,45,0.25);
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-card p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 14px;
}

.contact-card a {
  color: #ff2d2d;
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* 📱 Mobile comfort */
@media (max-width: 768px) {
  .dev-contact {
    padding: 60px 5%;
  }
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 60px auto;
}

.feature-card {
  background: rgba(15, 15, 18, 0.75);
  border-radius: 16px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
  transition: 0.3s ease;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
}

.feature-card a {
  display: inline-block;
  margin-top: 12px;
  color: #9b5cff;
  text-decoration: none;
  font-weight: 500;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155,92,255,0.4);
}

/* Highlight Sensi Card */
.feature-card.highlight {
  box-shadow:
    0 0 0 1px rgba(155,92,255,0.25),
    0 0 60px rgba(155,92,255,0.15);
}
/* ================= SENSI CARD HIGHLIGHT ================= */
.power-card.sensi-highlight {
  position: relative;
  border: 1px solid rgba(155, 92, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(155, 92, 255, 0.25),
    0 20px 60px rgba(155, 92, 255, 0.12);
}

.power-card.sensi-highlight::after {
  content: "AI";
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(155, 92, 255, 0.15);
  color: #c9b8ff;
}
<style>
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 60px auto;
}

.feature-card {
  background: rgba(15, 15, 18, 0.75);
  border-radius: 16px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
  transition: 0.3s ease;
}
</style>
