/* Desktop Large & Medium (1024px+) */
@media (min-width: 1024px) {
  /* Desktop styles are default */
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}

/* Mobile & Small Tablet (max-width: 768px) */
@media (max-width: 768px) {
  /* Typography */
  .hero-title {
    font-size: 42px;
  }
  
  .section-title, .modules-title {
    font-size: 28px;
  }
  
  /* Header Mobile Styles */
  .header-wrapper {
    padding: 16px;
  }
  
  .header {
    height: 56px;
    padding: 0 18px;
  }
  
  /* Hide standard nav links */
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 23, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-large);
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  
  /* Hero layout */
  .hero {
    padding: 100px 16px 60px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  /* Features section */
  .features-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  /* Cta section */
  .cta-section {
    padding: 60px 0;
  }
  
  /* Footer */
  .footer {
    padding: 30px 0;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  /* Profile layout */
  .profile-wrapper {
    padding: 100px 16px 60px;
  }

  /* Modules page */
  .modules-wrapper {
    padding: 100px 16px 60px;
  }
  
  .category-filter-bar {
    gap: 8px;
  }
  
  .category-tab {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Download page */
  .download-cards {
    grid-template-columns: 1fr;
  }

  .download-page {
    padding: 100px 16px 60px;
  }

  /* FAQ page */
  .faq-wrapper {
    padding: 100px 16px 60px;
  }

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

/* Extra Small Mobile (max-width: 480px) { */
@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .dynamic-island {
    padding: 6px 14px;
    font-size: 11px;
    gap: 10px;
  }
  
  .dynamic-island-container {
    margin-bottom: 4px;
  }
  
  /* Auth styles */
  .auth-panel-content {
    padding: 32px 20px;
  }
  
  .auth-title {
    font-size: 26px;
  }
}
