

@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
  }

  .footer-brand-col {
    grid-column: span 4;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-2xl) 0;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  header {
    height: 64px;
  }

  header .header-inner {
    padding: 0 var(--space-md);
  }

  .header-brand {
    font-size: 20px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto !important;
    padding: var(--space-3xl) 0 !important;
  }

  .hero-h1 {
    font-size: 38px !important;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg) !important;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .about-content-split {
    flex-direction: column;
  }

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

  .footer-brand-col, .footer-contact-col {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .footer-bottom__disclaimer {
    justify-content: center;
  }

  .footer-bottom__payments {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  section {
    padding: var(--space-xl) 0;
  }

  .game-card {
    height: 240px;
  }

  .game-card__title {
    font-size: 18px;
  }

  .game-card__actions {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .cookie-banner__text {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner__actions .btn {
    flex-grow: 1;
  }

  .ai-chat-panel {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .ai-fab {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-brand-col, .footer-contact-col {
    grid-column: span 1;
  }

  .footer-cookie-notice {
    font-size: 12px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }

  body {
    font-size: 18px;
  }
}
