@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }

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

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

@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background-color: var(--color-header);
    padding: 20px;
    transition: left 0.3s;
    z-index: 999;
  }

  .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-slider {
    height: 400px;
  }

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

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

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

  .tournament-card {
    min-width: 100%;
  }

  .games-slider {
    flex-wrap: nowrap;
  }

  .game-card {
    min-width: 200px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .widget-bonus {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container-fluid {
    padding: 0 15px;
  }

  .header-buttons {
    gap: 5px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .online-counter {
    font-size: 12px;
  }

  .section-block {
    padding: 20px;
  }

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

  .hero-slider {
    height: 300px;
  }

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

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

  .btn-hero {
    padding: 12px 24px;
    font-size: 16px;
  }

  .param-name {
    width: 40%;
    font-size: 14px;
  }

  .param-value {
    font-size: 14px;
  }
}
