@media (max-width: 992px) {
  .header-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background-color: var(--color-header);
    padding: 20px;
    transition: left 0.3s;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  }

  .header-nav.active {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 15px;
  }

  .burger-menu {
    display: flex;
  }

  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .pros-cons-wrapper {
    flex-direction: column;
  }

  .tournaments-wrapper {
    flex-direction: column;
  }

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

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

  .hero-slider {
    height: 300px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .slot-display {
    gap: 10px;
    padding: 20px;
  }

  .slot-reel {
    width: 80px;
    height: 80px;
    font-size: 50px;
  }

  .slot-machine {
    padding: 20px;
  }

  .widget-content {
    flex-direction: column;
    text-align: center;
  }

  .widget-bonus {
    font-size: 16px;
  }

  .content-block {
    padding: 20px;
  }

  .content-block h1 {
    font-size: 28px;
  }

  .content-block h2 {
    font-size: 22px;
  }

  .author-info-block {
    flex-direction: column;
    text-align: center;
  }

  .reviews-wrapper {
    grid-template-columns: 1fr;
  }

  .review-form-container {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .auth-buttons {
    position: fixed;
    top: 15px;
    right: 60px;
    z-index: 1001;
  }

  .btn-login,
  .btn-signup {
    padding: 8px 15px;
    font-size: 14px;
  }

  .hero-slider {
    height: 250px;
  }

  .slot-display {
    flex-direction: row;
  }

  .slot-reel {
    width: 70px;
    height: 70px;
    font-size: 40px;
  }

  .payment-logos,
  .provider-logos {
    justify-content: center;
  }
}
