/* ============================================
   MOND-WOW NEW THEME - Dark Blue Epic WoW
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cinzel+Decorative:wght@400;700&family=Raleway:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-deep:        #020810;
  --bg-dark:        #060d1a;
  --bg-card:        #0a1628;
  --bg-card-hover:  #0f1f3d;
  --blue-primary:   #1a6fce;
  --blue-bright:    #4db8ff;
  --blue-glow:      #00aaff;
  --blue-rune:      #0066cc;
  --gold:           #c8a84b;
  --gold-bright:    #f0c84a;
  --text-primary:   #e8eaf0;
  --text-secondary: #8fa8c8;
  --text-muted:     #4a6080;
  --border-blue:    rgba(77,184,255,0.2);
  --border-glow:    rgba(77,184,255,0.5);
  --shadow-blue:    0 0 30px rgba(0,170,255,0.15);
  --shadow-glow:    0 0 60px rgba(0,170,255,0.3);
  --font-display:   'Cinzel Decorative', serif;
  --font-heading:   'Cinzel', serif;
  --font-body:      'Raleway', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { 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-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--blue-bright); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-bright); }

img { max-width: 100%; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--blue-primary); border-radius: 3px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar-mondnew {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(2,8,16,0.98) 0%, rgba(2,8,16,0.85) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-blue);
  box-shadow: 0 2px 30px rgba(0,100,200,0.15);
  transition: all 0.3s ease;
}

.navbar-mondnew.scrolled {
  background: rgba(2,8,16,0.99);
  border-bottom-color: var(--border-glow);
}

.nav-logo {
  height: 100px;
  filter: drop-shadow(0 0 10px rgba(77,184,255,0.6));
  transition: filter 0.3s;
}
.nav-logo:hover { filter: drop-shadow(0 0 20px rgba(77,184,255,0.9)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links li a {
  display: block;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--blue-glow);
  transition: all 0.3s ease;
  box-shadow: 0 0 6px var(--blue-glow);
}

.nav-links li a:hover {
  color: var(--blue-bright);
  border-color: var(--border-blue);
  background: rgba(77,184,255,0.05);
}
.nav-links li a:hover::after { left: 10%; right: 10%; }

.nav-btn {
  font-family: var(--font-heading) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 4px !important;
  border: 1px solid !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
}

.nav-btn-register {
  color: var(--blue-bright) !important;
  border-color: var(--blue-primary) !important;
  background: rgba(26,111,206,0.1) !important;
}
.nav-btn-register:hover {
  background: rgba(26,111,206,0.3) !important;
  box-shadow: 0 0 15px rgba(77,184,255,0.3) !important;
  color: #fff !important;
}

.nav-btn-login {
  color: #fff !important;
  border-color: var(--blue-glow) !important;
  background: linear-gradient(135deg, #1a6fce, #0044aa) !important;
  box-shadow: 0 0 15px rgba(0,170,255,0.2) !important;
}
.nav-btn-login:hover {
  background: linear-gradient(135deg, #2280e0, #0055cc) !important;
  box-shadow: 0 0 25px rgba(0,170,255,0.4) !important;
  transform: translateY(-1px) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-mondnew {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(0deg,   rgba(2,8,16,1)    0%,  rgba(2,8,16,0.3)  40%, transparent 60%),
    linear-gradient(90deg,  rgba(2,8,16,0.7)  0%,  transparent       40%, transparent 60%, rgba(2,8,16,0.7) 100%),
    linear-gradient(180deg, rgba(2,8,16,0.8)  0%,  transparent       30%);
}

/* Rune particles canvas */
#runeCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: min(500px, 80vw);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 30px rgba(77,184,255,0.7)) drop-shadow(0 0 60px rgba(0,100,255,0.4));
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(77,184,255,0.7)) drop-shadow(0 0 60px rgba(0,100,255,0.4)); }
  50%       { filter: drop-shadow(0 0 50px rgba(77,184,255,1))   drop-shadow(0 0 100px rgba(0,150,255,0.6)); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  animation: heroFadeIn 1.2s ease 0.3s both;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: var(--blue-bright);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  opacity: 0.8;
  animation: heroFadeIn 1.2s ease 0.5s both;
}

.hero-divider {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
  margin: 1.5rem auto;
  box-shadow: 0 0 10px var(--blue-glow);
  animation: heroFadeIn 1.2s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s ease 0.7s both;
}

/* ── Buttons ── */
.btn-mond {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-mond::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-mond:hover::before { opacity: 1; }

.btn-primary-mond {
  background: linear-gradient(135deg, #1a6fce 0%, #0044aa 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(0,170,255,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  border: 1px solid rgba(77,184,255,0.4);
}
.btn-primary-mond:hover {
  background: linear-gradient(135deg, #2280e0 0%, #0055cc 100%);
  box-shadow: 0 0 40px rgba(0,170,255,0.5), 0 8px 25px rgba(0,0,0,0.4);
  transform: translateY(-3px);
  color: #fff;
}

.btn-secondary-mond {
  background: transparent;
  color: var(--blue-bright);
  border: 1px solid var(--blue-primary);
  box-shadow: inset 0 0 20px rgba(0,170,255,0.05);
}
.btn-secondary-mond:hover {
  background: rgba(26,111,206,0.15);
  border-color: var(--blue-bright);
  box-shadow: 0 0 25px rgba(77,184,255,0.3);
  transform: translateY(-3px);
  color: var(--blue-bright);
}

.btn-gold-mond {
  background: linear-gradient(135deg, #c8a84b 0%, #9a7a2e 100%);
  color: #1a1000;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(200,168,75,0.3);
  border: 1px solid rgba(240,200,74,0.4);
}
.btn-gold-mond:hover {
  background: linear-gradient(135deg, #f0c84a 0%, #c8a84b 100%);
  box-shadow: 0 0 40px rgba(240,200,74,0.5);
  transform: translateY(-3px);
  color: #1a1000;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.5;
}
.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--blue-glow), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTION BASE
   ============================================ */
.section-mondnew {
  padding: 6rem 2rem;
  position: relative;
}

.section-mondnew::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-blue), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(77,184,255,0.2);
}

.section-title span {
  color: var(--blue-bright);
  text-shadow: 0 0 20px rgba(77,184,255,0.5);
}

.section-underline {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
  margin: 1rem auto 0;
  box-shadow: 0 0 10px var(--blue-glow);
}

.container-mondnew {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.news-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(0,0,0,0.5);
}
.news-card:hover::before { opacity: 1; }

.news-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.9);
  transition: all 0.4s;
}
.news-card:hover .news-card-image {
  filter: brightness(0.9) saturate(1.1);
  transform: scale(1.03);
}

.news-card-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #0a1628, #0f2040);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.3;
}

.news-card-body {
  padding: 1.5rem;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.news-card-category {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(77,184,255,0.1);
  border: 1px solid rgba(77,184,255,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.news-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.news-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s;
}
.news-card:hover .news-card-title { color: var(--blue-bright); }

.news-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-blue);
}

.news-read-more {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}
.news-read-more:hover { gap: 0.8rem; color: var(--gold-bright); }
.news-read-more::after { content: '→'; }

/* ============================================
   FEATURE CARDS (Vote / Store)
   ============================================ */
.features-section {
  background: var(--bg-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(0,0,0,0.5);
}
.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  background: rgba(26,111,206,0.1);
  box-shadow: 0 0 20px rgba(0,170,255,0.1);
  transition: all 0.3s;
}
.feature-card:hover .feature-icon {
  border-color: var(--blue-glow);
  box-shadow: 0 0 30px rgba(0,170,255,0.3);
  background: rgba(26,111,206,0.2);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   FOOTER
   ============================================ */
.footer-mondnew {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-blue);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(77,184,255,0.4));
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--blue-bright); }

.footer-divider {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-blue), transparent);
  margin: 1.5rem auto;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: #2a3a50;
  margin-top: 0.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   RUNE GLOW DECORATION
   ============================================ */
.rune-decoration {
  position: absolute;
  font-size: 2rem;
  opacity: 0.06;
  color: var(--blue-bright);
  pointer-events: none;
  animation: runeFloat 6s ease-in-out infinite;
  font-family: serif;
}
@keyframes runeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.06; }
  50%       { transform: translateY(-15px) rotate(5deg); opacity: 0.1; }
}

/* ============================================
   UTILITY
   ============================================ */
.text-blue    { color: var(--blue-bright); }
.text-gold    { color: var(--gold-bright); }
.text-muted   { color: var(--text-muted); }
.glow-blue    { text-shadow: 0 0 20px rgba(77,184,255,0.7); }
.mb-0 { margin-bottom: 0 !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .news-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .section-mondnew { padding: 4rem 1.25rem; }
}

.nav-dropdown {
  display: block !important;
  opacity: 0;
  transform: translateY(-10px) scaleY(0);
  transform-origin: top;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.nav-dropdown.open {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  pointer-events: all;
}

/* ── News Carousel ── */
.news-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.news-carousel-viewport {
  overflow: hidden;
  flex: 1;
}

.news-carousel-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-carousel-track .news-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
}

.news-arrow {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  background: rgba(6,13,26,0.9);
  color: var(--blue-bright);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0,170,255,0.1);
}

.news-arrow:hover {
  background: rgba(26,111,206,0.3);
  box-shadow: 0 0 25px rgba(77,184,255,0.4);
  transform: scale(1.1);
}

.news-arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .news-carousel-track .news-card { flex: 0 0 100%; }
  .news-arrow { width: 38px; height: 38px; font-size: 1.5rem; }
}

/* ── Hamburger ── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border-blue);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-bright);
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .hamburger-btn { display: flex; }
}

/* ── Mobile Overlay ── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1998;
  backdrop-filter: blur(4px);
}
.mobile-overlay.active { display: block; }

/* ── Mobile Sidebar ── */
.mobile-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #060d1a 0%, #020810 100%);
  border-right: 1px solid var(--border-blue);
  box-shadow: 5px 0 30px rgba(0,0,0,0.8);
  z-index: 1999;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-sidebar.active { transform: translateX(0); }

.sidebar-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: 1px solid var(--border-blue);
  color: var(--text-secondary);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.sidebar-close:hover {
  color: var(--blue-bright);
  border-color: var(--blue-bright);
}

.sidebar-links {
  list-style: none;
  width: 100%;
  margin-bottom: 1rem;
}
.sidebar-links li a {
  display: block;
  padding: 0.85rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-blue);
  transition: all 0.25s;
}
.sidebar-links li a:hover {
  color: var(--blue-bright);
  padding-left: 1.5rem;
  background: rgba(77,184,255,0.05);
}

/* ── Nav User Dropdown ── */
.nav-user-dropdown { position: relative; }

.nav-user-btn {
  background: rgba(10,22,40,0.8);
  border: 1px solid rgba(77,184,255,0.2);
  border-radius: 4px; color: var(--text-primary);
  font-family: var(--font-heading); font-size: 0.78rem;
  letter-spacing: 0.05em; padding: 0.5rem 0.85rem;
  cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-user-btn:hover { border-color: rgba(77,184,255,0.4); color: var(--blue-bright); }

.nav-user-menu {
  position: absolute; top: calc(100% + 0.5rem); right: 0;
  background: rgba(4,10,20,0.98);
  border: 1px solid rgba(77,184,255,0.2);
  border-radius: 4px; min-width: 180px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  z-index: 1000; overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-user-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-user-menu a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1rem; font-family: var(--font-heading);
  font-size: 0.78rem; letter-spacing: 0.05em;
  color: var(--text-secondary); transition: all 0.2s;
  text-decoration: none;
}
.nav-user-menu a:hover { color: var(--blue-bright); background: rgba(77,184,255,0.06); }
.nav-user-divider { height: 1px; background: rgba(77,184,255,0.1); margin: 0.25rem 0; }