/* ==========================================================================
   ChiefsNChop - Official Website Styles
   Color Palette: KC Chiefs Red/Gold/White + Dark accents
   ========================================================================== */

:root {
  --red: #E31837;
  --red-dark: #B8102C;
  --gold: #FFB81C;
  --gold-dark: #D49A00;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --dark: #1A1A2E;
  --dark-light: #16213E;
  --dark-medium: #0F3460;
  --gray: #6C757D;
  --gray-light: #E9ECEF;
  --green: #53FC18;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

/* Typography */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.section-title .gold {
  color: var(--gold);
}

.section-title .green {
  color: var(--green);
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(227, 24, 55, 0.4);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.2rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

#navbar.scrolled {
  border-bottom-color: var(--red);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(255, 184, 28, 0.1);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    url('https://files.kick.com/images/channel/89046/banner_image/566b1269-7bea-46a6-8f60-d2c9d0812f2a') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.7) 0%,
    rgba(26, 26, 46, 0.85) 50%,
    rgba(26, 26, 46, 0.98) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  animation: fadeInUp 1s ease;
}

.hero-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 30px rgba(255, 184, 28, 0.3);
  margin-bottom: 1.5rem;
  animation: pulse-glow 3s ease-in-out infinite;
}

#hero h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.7;
}

/* ==========================================================================
   About Section
   ========================================================================== */
#about {
  padding: 100px 0;
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
  align-items: start;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.about-text {
  padding-top: 10px;
}

.about-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  font-style: italic;
  border-left: 3px solid var(--red);
  padding-left: 20px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.about-text > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.about-interests h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--white);
}

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 184, 28, 0.1);
  border: 1px solid rgba(255, 184, 28, 0.3);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.tag:hover {
  background: rgba(255, 184, 28, 0.2);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ==========================================================================
   Stream Section
   ========================================================================== */
#stream {
  padding: 100px 0;
  background: var(--dark-light);
}

.stream-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.stream-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stream-placeholder-content {
  position: relative;
  aspect-ratio: 16 / 9;
}

.stream-offline-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stream-placeholder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.stream-placeholder-overlay i {
  font-size: 4rem;
  color: var(--green);
  margin-bottom: 10px;
  transition: var(--transition);
}

.stream-placeholder-overlay p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stream-placeholder-content:hover .stream-placeholder-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.stream-placeholder-content:hover .stream-placeholder-overlay i {
  transform: scale(1.1);
  color: var(--white);
}

.stream-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.stream-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-card i {
  font-size: 1.2rem;
  color: var(--gold);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

.stream-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--white);
}

.game-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.game-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
}

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

.game-info {
  display: flex;
  flex-direction: column;
}

.game-info strong {
  font-size: 0.95rem;
}

.game-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

.game-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gray);
}

.game-badge.current {
  background: rgba(83, 252, 24, 0.15);
  color: var(--green);
}

/* ==========================================================================
   Merch Section
   ========================================================================== */
#merch {
  padding: 100px 0;
  background: var(--dark);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 3rem;
}

.merch-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}

.merch-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(255, 184, 28, 0.15);
}

.merch-card.featured {
  border-color: var(--gold);
  background: rgba(255, 184, 28, 0.08);
}

.merch-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 10px;
}

.merch-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.merch-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.merch-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.merch-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.merch-cta {
  text-align: center;
}

.merch-note {
  margin-top: 1rem;
  color: var(--gray);
  font-size: 0.9rem;
}

/* ==========================================================================
   Community Section
   ========================================================================== */
#community {
  padding: 100px 0;
  background: var(--dark-light);
  position: relative;
}

#community::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.community-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  transition: var(--transition);
}

.community-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(227, 24, 55, 0.15);
}

.community-icon {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.community-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.community-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ==========================================================================
   Sponsors Section
   ========================================================================== */
#sponsors {
  padding: 100px 0;
  background: var(--dark);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sponsor-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}

.sponsor-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(255, 184, 28, 0.1);
}

.sponsor-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.sponsor-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.sponsor-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.sponsor-code {
  background: rgba(255, 184, 28, 0.1);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--gold);
}

.sponsor-code strong {
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* ==========================================================================
   Links / Connect Section
   ========================================================================== */
#links {
  padding: 100px 0;
  background: var(--dark-light);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.link-card:hover {
  transform: translateY(-5px);
}

.link-card i {
  font-size: 2rem;
}

.link-card span {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.link-card small {
  font-size: 0.8rem;
  color: var(--gray);
}

.link-card.kick {
  border-color: rgba(83, 252, 24, 0.3);
}
.link-card.kick:hover {
  background: rgba(83, 252, 24, 0.1);
  border-color: var(--green);
  box-shadow: 0 8px 30px rgba(83, 252, 24, 0.15);
}
.link-card.kick i { color: var(--green); }

.link-card.twitter {
  border-color: rgba(255, 255, 255, 0.2);
}
.link-card.twitter:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.link-card.discord {
  border-color: rgba(88, 101, 242, 0.3);
}
.link-card.discord:hover {
  background: rgba(88, 101, 242, 0.1);
  border-color: #5865F2;
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.15);
}
.link-card.discord i { color: #5865F2; }

.link-card.merch-link {
  border-color: rgba(255, 184, 28, 0.3);
}
.link-card.merch-link:hover {
  background: rgba(255, 184, 28, 0.1);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(255, 184, 28, 0.15);
}
.link-card.merch-link i { color: var(--gold); }

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  padding: 50px 0 30px;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-tagline {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 1.5rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 184, 28, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 184, 28, 0.6);
  }
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 280px 1fr;
    gap: 30px;
  }

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

  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsors-grid .sponsor-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border-bottom: 2px solid var(--red);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1.1rem;
  }

  /* Hero Mobile */
  #hero h1 {
    font-size: 2.8rem;
  }

  .hero-avatar {
    width: 120px;
    height: 120px;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  /* About Mobile */
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    max-width: 250px;
    margin: 0 auto;
  }

  .about-quote {
    border-left: none;
    border-top: 3px solid var(--red);
    padding-left: 0;
    padding-top: 16px;
  }

  .interest-tags {
    justify-content: center;
  }

  /* Merch Mobile */
  .merch-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  }

  /* Community Mobile */
  .community-grid {
    grid-template-columns: 1fr;
  }

  /* Sponsors Mobile */
  .sponsors-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .sponsors-grid .sponsor-card:last-child {
    max-width: none;
  }

  /* Links Mobile */
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stream Stats Mobile */
  .stream-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  #hero h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .link-card {
    padding: 20px 12px;
  }
}
