/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-alt: #0e0e16;
  --surface: #1a1a26;
  --accent: #f0b232;
  --accent-glow: rgba(240, 178, 50, 0.15);
  --accent2: #e74c3c;
  --green: #2ecc71;
  --red: #e74c3c;
  --text: #e8e8f0;
  --text-dim: #8888a0;
  --border: #2a2a3a;
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--accent);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ffd06a;
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(240, 178, 50, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(231, 76, 60, 0.05), transparent),
    var(--bg);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-width='0.3' opacity='0.04'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
}

.hero__badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
  border: 1px solid rgba(240, 178, 50, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease-out;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 48px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat__number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__cta {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 100px;
  transition: all 0.3s;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero__cta:hover {
  background: #ffd06a;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 178, 50, 0.3);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.3s;
}

.nav.visible {
  transform: translateY(0);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section__desc {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 178, 50, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(240, 178, 50, 0.12);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.card__desc {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.card__features {
  list-style: none;
  margin-bottom: 20px;
}

.card__features li {
  position: relative;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.card__features li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: 0.2s;
}

.card__link:hover {
  color: #ffd06a;
}

/* ===== CHANNELS ===== */
.channels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.channel {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.channel:hover {
  border-color: rgba(240, 178, 50, 0.25);
  transform: translateY(-2px);
}

.channel__avatar {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 12px;
}

.channel__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.channel__type {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.channel__text {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 6px;
  line-height: 1.5;
}

/* ===== STREAMERS ===== */
.streamers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.streamer {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  position: relative;
}

.streamer:hover {
  border-color: rgba(240, 178, 50, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.streamer__rank {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
}

.streamer__name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.streamer__team {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: rgba(240, 178, 50, 0.1);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.streamer__desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 12px;
}

.streamer__platform {
  font-size: 0.78rem;
  color: var(--text-dim);
  opacity: 0.6;
}

/* ===== TIPS ===== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.tip {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.tip--do {
  background: rgba(46, 204, 113, 0.04);
  border-color: rgba(46, 204, 113, 0.2);
}

.tip--dont {
  background: rgba(231, 76, 60, 0.04);
  border-color: rgba(231, 76, 60, 0.2);
}

.tip--secret {
  background: rgba(240, 178, 50, 0.04);
  border-color: rgba(240, 178, 50, 0.2);
}

.tip__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.tip__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.tip__list {
  list-style: none;
}

.tip__list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 10px;
  line-height: 1.5;
}

.tip--do .tip__list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.tip--dont .tip__list li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.tip--secret .tip__list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
  top: 2px;
}

/* ===== ROADMAP ===== */
.roadmap {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.roadmap::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(240, 178, 50, 0.1));
}

.roadmap__step {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.roadmap__step:last-child {
  padding-bottom: 0;
}

.roadmap__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  z-index: 1;
}

.roadmap__step--pro .roadmap__number {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px rgba(240, 178, 50, 0.4);
}

.roadmap__content {
  flex: 1;
  padding-top: 10px;
}

.roadmap__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.roadmap__rank {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.roadmap__desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 8px;
  line-height: 1.6;
}

.roadmap__time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 10px;
  opacity: 0.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__text {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer__links h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 12px;
}

.footer__links a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer__bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero__stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .stat__number {
    font-size: 2rem;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__burger {
    display: flex;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .channels {
    grid-template-columns: 1fr;
  }

  .streamers-grid {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 60px 0;
  }
}