/* ==========================================================================
   LOR DIGITAL STUDIO - RESPONSIVE STYLESHEET
   Mobile, Tablet & Ultrawide Optimizations
   ========================================================================== */

/* Large Screens (Above 1200px) */
@media (min-width: 1200px) {
  .hero-banner-inner {
    max-height: 520px;
  }
}

/* Tablets and Below (Under 992px) */
@media (max-width: 992px) {
  :root {
    --header-height: 72px;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(8, 5, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-bright);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-smooth);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title-main {
    font-size: 2rem;
  }

  .channel-showcase-grid {
    grid-template-columns: 1fr;
  }

  .tiktok-showcase-container {
    grid-template-columns: 1fr;
  }

  .hero-overlay-hud {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

  .hero-hud-stats {
    width: 100%;
    justify-content: flex-start;
  }

  .hud-stat-box {
    text-align: left;
  }
}

/* Mobile Screens (Under 768px) */
@media (max-width: 768px) {
  .hero-section {
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 2.5rem;
  }

  .hero-banner-inner {
    max-height: 280px;
  }

  .hero-title-main {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .terminal-content-pane {
    padding: 1.25rem;
  }

  .gate-btn {
    width: 100%;
    justify-content: center;
  }

  .channels-tabs-nav {
    padding: 0.75rem;
    gap: 0.4rem;
  }

  .channel-tab-btn {
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
  }

  .footer-meta-row {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
  }
}

/* Small Phones (Under 480px) */
@media (max-width: 480px) {
  .brand-title {
    font-size: 1rem;
  }

  .brand-logo-container {
    width: 42px;
    height: 42px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .hero-banner-inner {
    max-height: 220px;
  }

  .hud-btn span {
    display: none;
  }

  .hud-btn {
    padding: 0.5rem;
  }

  .support-container {
    grid-template-columns: 1fr;
  }
}
