/* ============================================
   Responsive Styles
   ============================================ */

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.875rem; }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  /* Header */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 5%;
    gap: 0;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .nav-link {
    display: block;
    padding: 20px 0;
    font-size: 1.125rem;
  }
  
  .nav-actions {
    width: 100%;
    flex-direction: column;
    margin-top: 24px;
  }
  
  .nav-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Hero */
  .hero {
    min-height: 80vh;
    padding-top: 120px;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Features Grid */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  /* Games Grid */
  .games-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1.125rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .section-padding {
    padding: 48px 0;
  }
  
  .container-fluid {
    padding-left: 4%;
    padding-right: 4%;
  }
  
  .navbar {
    padding: 16px 4%;
  }
  
  .logo {
    font-size: 1.375rem;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .btn {
    padding: 10px 24px;
    font-size: 0.9375rem;
  }
  
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .hero-actions .btn {
    padding: 14px 32px;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 32px 24px;
  }
  
  .feature-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
  
  .step-item {
    gap: 16px;
  }
  
  .step-number {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }
  
  .step-item:not(:last-child)::after {
    left: 25px;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .footer {
    padding: 60px 0 0;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}