/* Responsive Styles */

/* 1200px and below */
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
  
  .hero-content h1 {
    font-size: 48px;
  }
  
  .footer-content {
    gap: var(--spacing-lg);
  }
}

/* 1024px and below */
@media screen and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 42px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    margin-bottom: var(--spacing-lg);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl) var(--spacing-lg);
  }
}

/* 768px and below */
@media screen and (max-width: 768px) {
  .header-content {
    position: relative;
  }
  
  .logo-text {
    font-size: 24px;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    background-color: var(--secondary-color);
    flex-direction: column;
    padding: var(--spacing-lg);
    z-index: 100;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu a {
    display: block;
    padding: var(--spacing-sm) 0;
  }
  
  .auth-buttons {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-content {
    text-align: center;
    padding: 0 var(--spacing-md);
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .featured-games {
    flex-direction: column;
    align-items: center;
  }
  
  .game-card.featured {
    width: 100%;
    max-width: 400px;
  }
  
  .disclaimer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  .about-content {
    text-align: center;
  }
  
  .stats-container {
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
}

/* 480px and below */
@media screen and (max-width: 480px) {
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .section-header {
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .btn-large {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .games-filter {
    gap: var(--spacing-xs);
  }
  
  .filter-btn {
    padding: 6px 16px;
    font-size: 14px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  .disclaimer-icon {
    font-size: 36px;
  }
  
  .disclaimer-text h3 {
    font-size: 20px;
  }
  
  .game-info h3 {
    font-size: 20px;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
}