/* ============================================================
   CLASSIC TV PAKISTAN — VARIABLES & BASE STYLES
   ============================================================ */

:root {
  --bg-deep: #060b08;
  --bg-surface: #0e1712;
  --bg-card: #121f18;
  --bg-card-hover: #17271f;
  --border: #203529;
  --border-gold: rgba(245, 197, 66, 0.35);
  --gold: #f5c542;
  --gold-hover: #ffd768;
  --gold-glow: rgba(245, 197, 66, 0.2);
  --emerald-accent: #2e7d4d;
  --text-primary: #fbf9f4;
  --text-muted: #9eb0a5;
  --text-dim: #677b70;
  --font-serif: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-urdu: 'Noto Nastaliq Urdu', serif;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 85% 10%, rgba(46, 125, 77, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 10% 45%, rgba(245, 197, 66, 0.07) 0%, transparent 40%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

input, select, textarea {
  font-family: inherit;
}

/* Responsive Visibility Helpers */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none !important;
}

@media (max-width: 850px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  body {
    padding-bottom: 64px; /* Room for bottom nav bar */
  }
}

/* Common Footer */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
  padding: 40px 5% 30px;
  color: var(--text-dim);
  font-size: 12px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 850px) {
  footer {
    padding: 24px 16px 84px;
    text-align: center;
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
  }
}
