@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;600&display=swap');

:root {
  --bg-deep: #0a0612;
  --bg-card: #110d1e;
  --accent-pink: #ff2d8a;
  --accent-cyan: #00e5ff;
  --accent-purple: #8b2fc9;
  --text-primary: #ffffff;
  --text-muted: #a0a0b8;
  --glow-pink: rgba(255, 45, 138, 0.3);
  --glow-cyan: rgba(0, 229, 255, 0.3);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius: 12px;
}

/* =====================
   RESET & BASE
   ===================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =====================
   BUTTONS
   ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-pink {
  background: var(--accent-pink);
  color: #fff;
  border-color: var(--accent-pink);
}

.btn-pink:hover {
  background: transparent;
  color: var(--accent-pink);
  box-shadow: 0 0 20px var(--glow-pink);
}

.btn-outline-pink {
  background: transparent;
  color: var(--accent-pink);
  border-color: var(--accent-pink);
}

.btn-outline-pink:hover {
  background: var(--accent-pink);
  color: #fff;
  box-shadow: 0 0 20px var(--glow-pink);
}

.btn-outline-cyan {
  background: transparent;
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.btn-outline-cyan:hover {
  background: var(--accent-cyan);
  color: var(--bg-deep);
  box-shadow: 0 0 20px var(--glow-cyan);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

/* =====================
   NAV
   ===================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 6, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

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

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

.nav-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-brand span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--border-subtle);
}

.nav-discord {
  font-size: 0.85rem !important;
  font-weight: 600;
  color: var(--accent-pink) !important;
  border: 1.5px solid var(--accent-pink);
  padding: 7px 18px !important;
  border-radius: 50px !important;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
  background: transparent !important;
}

.nav-discord:hover {
  background: var(--accent-pink) !important;
  color: #fff !important;
  box-shadow: 0 0 16px var(--glow-pink);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(10, 6, 18, 0.98);
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.nav-mobile-menu a:hover {
  color: var(--text-primary);
  background: var(--border-subtle);
}

.nav-mobile-menu .nav-discord {
  margin-top: 8px;
  text-align: center;
  display: block;
}

/* =====================
   HERO
   ===================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/Banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 6, 18, 0.3) 0%,
    rgba(10, 6, 18, 0.7) 60%,
    rgba(10, 6, 18, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 24px var(--glow-cyan));
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 8px;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 40px var(--glow-pink), 0 2px 24px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 10px;
  opacity: 0.9;
}

.hero-sub {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* =====================
   SECTIONS BASE
   ===================== */

section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}

/* =====================
   SOCIALS STRIP
   ===================== */

.socials-strip {
  padding: 48px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.socials-strip .section-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.social-card:hover {
  color: var(--text-primary);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 16px var(--glow-cyan);
  transform: translateY(-2px);
}

.social-card svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =====================
   STREAM INFO
   ===================== */

.stream-section {
  text-align: center;
}

.stream-section .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.stream-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  color: var(--accent-pink);
}

.stream-deco::before,
.stream-deco::after {
  content: '';
  display: block;
  height: 1px;
  width: 80px;
}

.stream-deco::before {
  background: linear-gradient(to right, transparent, var(--accent-pink));
  opacity: 0.5;
}

.stream-deco::after {
  background: linear-gradient(to left, transparent, var(--accent-pink));
  opacity: 0.5;
}

.stream-icon {
  font-size: 1.1rem;
  opacity: 0.7;
}

/* =====================
   CLIPS
   ===================== */

.clips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.clip-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.clip-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 47, 201, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.clip-card:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 0 20px rgba(139, 47, 201, 0.15);
  transform: translateY(-2px);
}

.clip-play-icon {
  font-size: 1.8rem;
  opacity: 0.2;
}

.clips-cta {
  text-align: center;
  margin-top: 8px;
}

.clips-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.clips-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   COMMUNITY
   ===================== */

.community-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.community-cta {
  margin-bottom: 48px;
}

.community-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.community-tile {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s ease;
}

.community-tile:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 16px var(--glow-cyan);
  transform: translateY(-2px);
}

.tile-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.tile-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.tile-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================
   FOOTER
   ===================== */

.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s ease;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.78rem;
  opacity: 0.6;
}

/* =====================
   SETUP PAGE
   ===================== */

.setup-note {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent-cyan);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 48px;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.setup-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
}

.setup-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--accent-cyan);
}

.setup-table {
  width: 100%;
  border-collapse: collapse;
}

.setup-table tr + tr td {
  border-top: 1px solid var(--border-subtle);
}

.setup-table td {
  padding: 10px 0;
  font-size: 0.9rem;
  vertical-align: top;
}

.setup-table td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  width: 42%;
  padding-right: 12px;
}

.setup-table td:last-child {
  color: var(--text-primary);
}

/* =====================
   CLIPS PAGE
   ===================== */

.clips-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

/* =====================
   COMMUNITY PAGE
   ===================== */

.community-hero-cta {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}

.community-hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.community-hero-cta .section-label {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}

.community-hero-cta .section-sub {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.community-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.community-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s ease;
}

.community-feature-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 16px var(--glow-cyan);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.giveaways-note {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.giveaways-note .section-label {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.giveaways-note p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 900px) {
  .clips-grid,
  .community-tiles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  section {
    padding: 60px 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

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

  .community-tiles {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .btn {
    padding: 11px 20px;
    font-size: 0.85rem;
  }

  .clips-grid,
  .clips-page-grid,
  .community-features {
    grid-template-columns: 1fr;
  }

  .community-hero-cta {
    padding: 36px 24px;
  }
}
