/* Mobile First - Base styles are mobile */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero {
    padding: var(--space-3xl) 0 calc(var(--space-3xl) * 1.5);
  }

  .casino-card {
    padding: var(--space-xl);
  }

  .casino-card__logo {
    width: 100px;
    height: 100px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .section {
    padding: var(--space-3xl) 0;
  }

  .section--lg {
    padding: calc(var(--space-3xl) * 1.5) 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    padding: 0;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .card:hover,
  .article-card:hover,
  .casino-card:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }

  .kw-pill:hover {
    transform: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .kw-carousel__row {
    animation: none;
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .mobile-menu-btn,
  .kw-carousel,
  .modal {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .container {
    max-width: 100%;
  }

  a {
    text-decoration: underline;
  }
}
