@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hotel-card {
    flex-direction: column;
  }

  .hotel-card__image {
    flex: none;
    height: 250px;
  }

  .hotel-card__details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .laws-grid {
    grid-template-columns: 1fr;
  }

  .footer__content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer__nav {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer__copyright {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__mobile-toggle {
    display: flex;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .casino-hotels__title,
  .selection-criteria__title,
  .gambling-laws__title,
  .contact-form__title {
    font-size: 2rem;
  }

  .page-header__title {
    font-size: 2.5rem;
  }

  .hotel-card__content {
    padding: 20px;
  }

  .hotel-card__name {
    font-size: 1.5rem;
  }

  .criteria-item {
    flex-direction: column;
    text-align: center;
  }

  .criteria-item__icon {
    align-self: center;
  }

  .law-card {
    padding: 20px;
  }

  .form {
    padding: 25px;
  }

  .age-verification__modal {
    padding: 30px 20px;
  }

  .age-verification__title {
    font-size: 1.5rem;
  }

  .age-verification__buttons {
    flex-direction: column;
    gap: 15px;
  }

  .age-verification__btn {
    width: 100%;
  }

  .cookie-banner {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .cookie-banner__buttons {
    justify-content: center;
  }

  .help-contacts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    min-height: 500px;
  }

  .hero__title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero__description {
    font-size: 0.9rem;
  }

  .casino-hotels,
  .selection-criteria,
  .gambling-laws,
  .contact-form {
    padding: 60px 0;
  }

  .page-header {
    padding: 80px 0 40px;
  }

  .page-header__title {
    font-size: 2rem;
  }

  .page-header__subtitle {
    font-size: 1rem;
  }

  .hotel-card__content {
    padding: 15px;
  }

  .hotel-card__name {
    font-size: 1.3rem;
  }

  .criteria-item__title {
    font-size: 1.3rem;
  }

  .law-card__title {
    font-size: 1.3rem;
  }

  .success-title {
    font-size: 2rem;
  }

  .success-section {
    padding: 100px 0;
  }

  .content h2 {
    font-size: 1.8rem;
  }

  .content h3 {
    font-size: 1.3rem;
  }

  .footer__nav {
    flex-direction: column;
    gap: 15px;
  }

  .age-verification__modal {
    margin: 10px;
  }

  .age-verification__title {
    font-size: 1.3rem;
  }

  .form__input,
  .form__textarea {
    padding: 12px;
  }
}

@media (max-width: 320px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .casino-hotels__title,
  .selection-criteria__title,
  .gambling-laws__title,
  .contact-form__title {
    font-size: 1.8rem;
  }

  .page-header__title {
    font-size: 1.8rem;
  }

  .hotel-card__name {
    font-size: 1.2rem;
  }

  .criteria-item__title,
  .law-card__title {
    font-size: 1.2rem;
  }

  .success-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }

  .hero__title {
    font-size: 4rem;
  }

  .hero__description {
    font-size: 1.2rem;
  }

  .casino-hotels__title,
  .selection-criteria__title,
  .gambling-laws__title,
  .contact-form__title {
    font-size: 3rem;
  }

  .page-header__title {
    font-size: 3.5rem;
  }

  .hotel-card__name {
    font-size: 2rem;
  }

  .criteria-item__title {
    font-size: 1.6rem;
  }

  .law-card__title {
    font-size: 1.6rem;
  }
}

@media (hover: hover) {
  .hotel-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  .law-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .law-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .criteria-item__icon {
    transition: transform 0.3s ease;
  }

  .criteria-item:hover .criteria-item__icon {
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero {
    scroll-behavior: auto;
  }

  html {
    scroll-behavior: auto;
  }
}

@media print {
  .header,
  .age-verification,
  .cookie-banner,
  .hero__buttons,
  .contact-form,
  .footer {
    display: none !important;
  }

  .main {
    margin-top: 0;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 40px 0;
  }

  .hero::before {
    display: none;
  }

  .hero__background {
    display: none;
  }

  .hero__content {
    color: #000;
  }

  .casino-hotels,
  .selection-criteria,
  .gambling-laws,
  .page-header {
    background-color: #fff !important;
    color: #000 !important;
  }

  .hotel-card,
  .law-card,
  .form {
    background-color: #f8f9fa !important;
    border: 1px solid #ddd !important;
  }

  .hotel-card__name,
  .criteria-item__title,
  .law-card__title,
  .hotel-card__label {
    color: #000 !important;
  }

  .hotel-card__value,
  .criteria-item__text,
  .law-card__text {
    color: #333 !important;
  }
}
