/* Responsive Styles for Arcadieny */

/* Tablet and Small Desktop */
@media screen and (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    padding-top: 50px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 50px;
  }

  .hero-content h2 {
    font-size: 2.8rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .hologram {
    width: 250px;
    height: 250px;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .game-image {
    height: 180px;
  }

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

  .footer-links {
    justify-content: center;
    margin-top: 30px;
  }

  .social-links {
    justify-content: center;
  }

  .contact-form-container {
    padding: 30px 20px;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  header {
    padding: 15px 5%;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 22px;
  }

  .logo-container h1 {
    font-size: 1.2rem;
  }

  .hamburger-menu {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background: var(--dark-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  }

  .nav-links li {
    margin: 20px 0;
    opacity: 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .nav-active {
    transform: translateX(0%);
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .hologram {
    width: 200px;
    height: 200px;
  }

  .games-section h2,
  .about-content h2,
  .newsletter-container h2,
  .page-header h1 {
    font-size: 2rem;
  }

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

  .stats-container {
    flex-direction: column;
  }

  .stat-box {
    width: 100%;
    margin: 10px 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-container {
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-column {
    width: 100%;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-card {
    margin-bottom: 20px;
  }

  .terms-content,
  .privacy-content {
    padding: 20px;
  }
}

/* Extra Small Screens */
@media screen and (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }

  .games-section,
  .about-section,
  .newsletter-section {
    padding: 60px 5%;
  }

  .game-image {
    height: 160px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .footer-logo h2 {
    font-size: 1.2rem;
  }

  .contact-form-container {
    padding: 20px 15px;
  }

  .submit-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

/* For High Resolution Displays */
@media screen and (min-width: 1500px) {
  .hero-content h2 {
    font-size: 4rem;
  }

  .hero-content p {
    font-size: 1.4rem;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin: 0 auto;
  }

  .game-image {
    height: 220px;
  }

  .about-content,
  .newsletter-container {
    max-width: 1000px;
  }
}