/* Responsive Styles */

@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .about-content, .hero-content, .disclaimer-content {
    gap: 40px;
  }

  .games-grid {
    gap: 20px;
  }
}

@media screen and (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text {
    padding-right: 30px;
  }

  .hero-image {
    height: 500px;
  }

  .about-content, .hero-content {
    flex-direction: column;
    gap: 60px;
  }

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

  .about-images {
    flex-direction: row;
  }

  .image-top, .image-bottom {
    flex: 1;
    height: 200px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide {
    flex-direction: column;
  }

  .slider-container {
    margin: 0 20px;
  }

  .slide-content, .slide-image {
    width: 100%;
  }

  .disclaimer-content {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  .header-content {
    padding: 10px 0;
  }

  .logo img {
    height: 30px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 20px;
    transform: translateY(-150%);
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1000;
  }

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

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

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

  .search-box {
    display: none;
  }

  .hero {
    background: var(--white);
    padding-top: 80px;
    min-height: auto;
  }

  .hero-text {
    padding-right: 0;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .about-text h2, .disclaimer-text h2, .top-games h2, .casino-games h2 {
    font-size: 28px;
  }

  .about-text h2::after, .disclaimer-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-text, .disclaimer-text {
    text-align: center;
  }

  .about-images {
    flex-direction: column;
  }

  .image-top, .image-bottom {
    height: 200px;
  }

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

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

  .footer-links h3::after, .footer-newsletter h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links, .footer-newsletter, .footer-logo {
    text-align: center;
  }

  .footer-newsletter form {
    flex-direction: column;
    gap: 10px;
  }

  .footer-newsletter input, .footer-newsletter .btn {
    width: 100%;
    border-radius: 50px;
  }

  .slide-content {
    padding: 30px 20px;
  }

  .slide-content h3 {
    font-size: 20px;
  }
  
  .slider-btn {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-image {
    height: 300px;
  }

  .about, .top-games, .casino-games, .disclaimer {
    padding: 60px 0;
  }

  .game-info {
    flex-direction: column;
    gap: 15px;
  }
}