@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Geist:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   1. DESIGN TOKENS & DUAL THEME SYSTEM (LIGHT & DARK KINPAKU GOLD)
   ========================================================================== */
:root {
  /* Surface Tokens (Default Dark / High Contrast Kinpaku) */
  --bg-page: #0B0F17;
  --bg-surface: #111827;
  --bg-surface-elevated: #1F2937;
  --bg-surface-glass: rgba(17, 24, 39, 0.88);
  --bg-nested-core: #0D131F;
  --bg-hover: rgba(255, 255, 255, 0.06);
  
  /* Text & Typography */
  --text-primary: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-faint: #64748B;
  
  /* Accents & Brand (Kinpaku Gold) */
  --accent-gold: #F59E0B;
  --accent-gold-rich: #D97706;
  --accent-gold-glow: rgba(245, 158, 11, 0.28);
  --accent-patina: #0D9488;
  --accent-blue: #3B82F6;
  --accent-rose: #F43F5E;
  --accent-emerald: #10B981;
  
  /* Hairline Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-active: rgba(245, 158, 11, 0.6);
  --shadow-bezel: 0 10px 30px -10px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-inner: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  --shadow-float: 0 20px 45px -10px rgba(0, 0, 0, 0.7);
  
  /* Physics & Transitions */
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --duration-normal: 250ms;
}

[data-theme="light"] {
  /* Surface Tokens (Light Mode Slate) */
  --bg-page: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #F1F5F9;
  --bg-surface-glass: rgba(255, 255, 255, 0.9);
  --bg-nested-core: #F8FAFC;
  --bg-hover: rgba(0, 0, 0, 0.04);
  
  /* Text & Typography */
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-faint: #94A3B8;
  
  /* Accents */
  --accent-gold: #D97706;
  --accent-gold-rich: #B45309;
  --accent-gold-glow: rgba(217, 119, 6, 0.2);
  --accent-patina: #0D9488;
  --accent-blue: #2563EB;
  --accent-rose: #E11D48;
  
  /* Hairline Borders & Shadows */
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-medium: rgba(15, 23, 42, 0.14);
  --border-active: rgba(217, 119, 6, 0.5);
  --shadow-bezel: 0 10px 30px -10px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-inner: inset 0 1px 2px rgba(255, 255, 255, 0.8);
  --shadow-float: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   2. BASE RESET & GLOBAL TYPOGRAPHY
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-family: 'Geist', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-page);
  overflow-x: hidden;
  position: relative;
  transition: background-color var(--duration-normal) ease, color var(--duration-normal) ease;
}

img, video, iframe, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-spring);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* ==========================================================================
   3. REUSABLE CONTAINER & DOUBLE-BEZEL ARCHITECTURE (DOPPELRAND)
   ========================================================================== */
.container-custom {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .container-custom {
    padding: 0 0.85rem;
  }
}

.doppelrand-shell {
  position: relative;
  border-radius: 1.5rem;
  padding: 0.375rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-bezel);
  transition: transform var(--duration-normal) var(--ease-spring), border-color var(--duration-normal) ease, box-shadow var(--duration-normal) ease;
  width: 100%;
  box-sizing: border-box;
}

.doppelrand-shell:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-float);
}

.doppelrand-core {
  position: relative;
  border-radius: calc(1.5rem - 0.375rem);
  background: var(--bg-nested-core);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-inner);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   4. NAVIGATION BAR (FLOATING GLASS PILL)
   ========================================================================== */
.navbar-wrapper {
  position: sticky;
  top: 0.75rem;
  z-index: 100;
  width: 100%;
  max-width: 100vw;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .navbar-wrapper {
    padding: 0 0.75rem;
    top: 0.5rem;
    margin-bottom: 1rem;
  }
}

.navbar-glass {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 1.15rem;
  border-radius: 9999px;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-float);
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .navbar-glass {
    padding: 0.5rem 0.85rem;
    border-radius: 1.25rem;
    gap: 0.5rem;
  }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.brand-icon-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 4px 14px var(--accent-gold-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--duration-normal) var(--ease-spring);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: var(--bg-hover);
}

.nav-link.active {
  color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

@media (max-width: 900px) {
  .nav-desktop-only {
    display: none !important;
  }
}

@media (min-width: 901px) {
  .nav-mobile-only {
    display: none !important;
  }
}

/* Server & Language Dropdown Containers */
.server-dropdown-container {
  position: relative;
}

.server-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  background: var(--bg-nested-core);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-spring);
}

.server-dropdown-btn:hover {
  border-color: var(--accent-gold);
  background: var(--bg-hover);
}

.server-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  width: 270px;
  max-height: 380px;
  overflow-y: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 1rem;
  box-shadow: var(--shadow-float);
  padding: 0.5rem;
  z-index: 150;
  display: none;
  scrollbar-width: thin;
  scrollbar-color: var(--border-medium) transparent;
}

.server-dropdown-menu.show {
  display: block;
  animation: dropdownIn 0.2s var(--ease-spring);
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.server-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-radius: 0.6rem;
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--duration-normal) ease;
}

.server-item:hover, .server-item.active {
  background: var(--bg-hover);
}

.server-item.active {
  background: rgba(245, 158, 11, 0.14);
  color: var(--accent-gold);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-rich) 100%);
  color: #000;
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--accent-gold-glow);
  transition: all var(--duration-normal) var(--ease-spring);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-gold-glow);
  filter: brightness(1.08);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1.05rem;
  border-radius: 9999px;
  background: var(--bg-nested-core);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-spring);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  background: var(--bg-hover);
}

.btn-secondary.active {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
}

.mobile-nav-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-nested-core);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ==========================================================================
   5. MOBILE DRAWER OVERLAY
   ========================================================================== */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 360px;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-medium);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-spring);
  overflow-y: auto;
}

.mobile-drawer-backdrop.open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-close {
  background: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
}

.mobile-nav-link-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  transition: all var(--duration-normal) ease;
}

.mobile-nav-link-item:hover, .mobile-nav-link-item.active {
  background: var(--bg-hover);
  color: var(--accent-gold);
}

/* ==========================================================================
   6. HERO SPOTLIGHT BANNER
   ========================================================================== */
.hero-banner {
  position: relative;
  border-radius: 1.75rem;
  padding: 2.75rem 2.5rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 41, 59, 0.88) 100%), url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?w=1200&q=80') center/cover no-repeat;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
}

@media (max-width: 860px) {
  .hero-banner {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 1.75rem 1.25rem;
    gap: 1.5rem;
  }
}

.hero-poster-container {
  position: relative;
  width: 220px;
  height: 310px;
  border-radius: 1.25rem;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 860px) {
  .hero-poster-container {
    width: 100%;
    max-width: 260px;
    height: 240px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   7. DRAMA CARDS & GRID
   ========================================================================== */
.drama-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.25rem;
  width: 100%;
}

@media (max-width: 640px) {
  .drama-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

.drama-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-spring), border-color var(--duration-normal) ease, box-shadow var(--duration-normal) ease;
  box-shadow: var(--shadow-bezel);
}

.drama-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-float);
}

.drama-poster-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4.2;
  overflow: hidden;
  background: var(--bg-nested-core);
}

.drama-poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.drama-card:hover .drama-poster-wrap img {
  transform: scale(1.06);
}

.drama-ep-badge {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 700;
}

.rank-badge-number {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 32px;
  height: 32px;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  z-index: 2;
}

.rank-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #000;
}

.rank-silver {
  background: linear-gradient(135deg, #E2E8F0 0%, #94A3B8 100%);
  color: #0F172A;
}

.rank-bronze {
  background: linear-gradient(135deg, #F97316 0%, #C2410C 100%);
  color: #FFF;
}

.rank-other {
  background: rgba(15, 23, 42, 0.85);
  color: #94A3B8;
  border: 1px solid var(--border-medium);
}

.drama-info {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.drama-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.drama-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.server-badge {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 0.35rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(245, 158, 11, 0.14);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-dub {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border-color: rgba(16, 185, 129, 0.35);
}

.badge-top {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border-color: rgba(239, 68, 68, 0.35);
}

/* ==========================================================================
   8. CONTINUE WATCHING (LANJUTKAN MENONTON)
   ========================================================================== */
.continue-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: all var(--duration-normal) var(--ease-spring);
}

.continue-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-bezel);
}

.continue-thumb-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}

.continue-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.continue-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
}

.continue-progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 9999px;
  background: var(--border-medium);
  overflow: hidden;
  margin-top: 0.4rem;
}

.continue-progress-fill {
  height: 100%;
  background: var(--accent-gold);
}

/* ==========================================================================
   9. TIKTOK-STYLE VERTICAL SHORTS CAROUSEL & PREVIEW
   ========================================================================== */
.tiktok-shorts-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .tiktok-shorts-container {
    grid-template-columns: 1fr;
  }
}

.tiktok-player-mockup {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9/16;
  border-radius: 1.75rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 2px solid var(--border-medium);
}

.tiktok-player-mockup video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tiktok-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: #FFF;
}

.tiktok-ep-pill {
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  color: #FFF;
  cursor: pointer;
  transition: all var(--duration-normal) ease;
}

.tiktok-ep-pill.active {
  background: var(--accent-gold);
  color: #000;
}

/* ==========================================================================
   10. MOBILE BOTTOM NAVIGATION BAR
   ========================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-around;
  padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
  background: var(--bg-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-medium);
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .mobile-bottom-bar {
    display: flex;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  transition: color var(--duration-normal) ease;
}

.bottom-nav-item svg {
  width: 20px;
  height: 20px;
}

.bottom-nav-item:hover, .bottom-nav-item.active {
  color: var(--accent-gold);
}

/* ==========================================================================
   11. FLOATING CS HELPDESK CTA
   ========================================================================== */
.floating-cs-cta {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 85;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.15rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-rich) 100%);
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px var(--accent-gold-glow);
  cursor: pointer;
  transition: transform var(--duration-normal) var(--ease-spring);
}

@media (max-width: 640px) {
  .floating-cs-cta {
    bottom: 4.8rem;
    right: 1rem;
    padding: 0.55rem 0.9rem;
    font-size: 0.78rem;
  }
}

.floating-cs-cta:hover {
  transform: translateY(-4px) scale(1.03);
}

/* ==========================================================================
   12. SITE FOOTER
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-footer {
    padding-bottom: 5.5rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ==========================================================================
   13. TOAST NOTIFICATIONS
   ========================================================================== */
.toast-msg {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--accent-gold);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-float);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease-spring);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast-msg.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
