/* === GLOBAL SCALE (10% smaller, layout-safe) === */
html{overflow-x:hidden;}
@media (min-width: 769px){
  html{ zoom: 0.9; }
}
@media (max-width: 768px){
  html{ zoom: 1; }
}
/* === END GLOBAL SCALE === */

/* --- SIDE MENU ELEMENTS (Step 2 Updated) --- */
/* REVERTED: Showing old navigation container */
.nav-right {
    display: flex !important;
}

/* NOTE: .menu-btn positioning - Default for Flex Layout */
.menu-btn {
  position: relative; /* Default to flow */
  z-index: 9999;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5); /* Semi-transparent bg */
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  border-radius: 5px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
  transition: all 0.3s ease;
}

.menu-btn:hover {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
  transform: scale(1.1);
}

/* CLOSE BUTTON INSIDE SIDE MENU */
.close-menu-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--neon-cyan);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10001;
}

.close-menu-btn:hover {
  color: var(--neon-magenta);
  text-shadow: 0 0 15px var(--neon-magenta);
  transform: rotate(90deg);
}

/* --- HEADER RESTORED (SAFE MODE) --- */
header {
    display: block !important;
    position: relative;
    padding: 20px 24px;
}

header h1 {
  flex-grow: 0;
  width: auto;
}
/* --- END HEADER --- */

/* --- MOBILE UPDATE (Step 9: Logo Left, Btn Right, Old Nav Below) --- */

/* 1. DESKTOP (Over 768px): Show new menu button IN FLOW */
@media only screen and (min-width: 769px) {
    /* Show Old Nav */
    .nav-links {
        display: flex !important;
    }

    .menu-btn {
        display: flex !important;
        position: static !important;
        z-index: 999999 !important;
        cursor: pointer !important;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.6) !important;
        border: 2px solid var(--neon-cyan) !important;
        margin-left: 0;
        width: 40px;
        height: 40px;
        border-radius: 5px;
    }
    
    /* FIX: Align Header Info Group properly on Desktop */
    .info-group-wrapper {
        display: inline-flex;
        gap: 15px;
        align-items: center; /* Vertical Center */
        border: none !important;
        background: transparent !important;
        height: 100%; /* Ensure full height */
    }
    
    .user-group-wrapper {
        display: inline-flex;
        gap: 15px;
        align-items: center; /* Vertical Center */
        border: none !important;
        background: transparent !important;
        height: 100%; /* Ensure full height */
    }
    
    /* Adjust specific items if needed */
    #clock, #weather, #site-visitors {
        display: inline-flex;
        align-items: center;
        height: 40px; /* Uniform height */
        margin: 0;
    }
}

/* 2. MOBILE (Under 768px): Hybrid Layout */
@media only screen and (max-width: 768px) {
  
  /* 1. Show Menu Button Top-Right */
  .menu-btn {
      display: flex !important;
      position: absolute !important;
      top: 15px !important;
      right: 15px !important;
      left: auto !important;
      width: 35px;
      height: 35px;
      font-size: 20px;
      z-index: 9999;
  }
  
  /* Capsules for mobile */
  .info-group-wrapper, .user-group-wrapper {
      display: flex !important;
      justify-content: space-between;
      align-items: center;
      width: 96%;
      margin: 5px auto;
      padding: 8px 10px;
      background: rgba(0, 0, 0, 0.6); /* Тъмен фон */
      border: 1px solid #00d2ff; /* Неонова рамка */
      border-radius: 12px;
      box-sizing: border-box;
  }
  /* Скриване на старите разхвърляни стилове */
  .info-group-wrapper > div, .user-group-wrapper > div {
      border: none !important;
      background: transparent !important;
      margin: 0 !important;
  }
  
  .side-menu-panel, .menu-overlay {
      display: flex; /* Ensure panel works when toggled */
  }

  /* 2. Move Logo to LEFT */
  .logo, .header-logo, h1 {
      text-align: left !important;
      margin-left: 5px !important;
      padding-right: 50px !important; /* Space for button */
      font-size: 18px !important;
      display: block !important;
      width: auto !important;
      white-space: normal !important;
  }
  
  header {
      text-align: left !important;
      position: relative;
      padding: 15px 10px !important;
  }

  /* 3. Keep Old Nav Below */
  .nav-row {
      display: flex !important;
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
  }
  
  .nav-left { display: flex !important; }

  nav.nav-links {
      display: flex !important;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      width: 100%;
  }
  
  nav.nav-links a {
      display: inline-block !important;
      font-size: 11px;
      padding: 8px 12px;
  }
  
  #clock, #weather {
      font-size: 12px;
      padding: 5px 10px;
  }
}
/* --- END MOBILE UPDATE --- */

/* --- MENU OVERLAY --- */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 10001; /* Above sticky header (10000) */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-menu-panel {
  position: fixed;
  top: 0;
  right: -100%; /* Hidden to the right */
  left: auto;   /* Reset left */
  width: 300px;
  height: 100vh;
  background: rgba(10, 10, 26, 0.95);
  border-left: 2px solid var(--neon-magenta); /* Border on left now */
  border-right: none;
  z-index: 10002; /* Topmost */
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  color: #fff;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
}

.side-menu-panel.active {
  right: 0; /* Slide in from right */
}

/* Menu Links Styling */
.side-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-menu-list li a {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--neon-cyan);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  padding: 8px 10px;
  border-radius: 8px;
}

.side-menu-list li a:hover {
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  padding-left: 20px; /* Slight movement effect */
}
/* --- END SIDE MENU ELEMENTS --- */

/* ============================================
   CYBERPUNK 2025 - ULTRA MODERN DARK NEON
   Glassmorphism + Animated Glow Effects
   ============================================ */

:root {
  --bg-primary: #000000;
  --bg-secondary: #050510;
  --bg-tertiary: #0a0a1a;
  --bg-card: rgba(10, 10, 26, 0.85);
  --neon-cyan: #00f0ff;
  --neon-magenta: #ff00ff;
  --neon-pink: #ff006e;
  --neon-blue: #0066ff;
  --neon-green: #00ff88;
  --neon-purple: #8b5cf6;
  --neon-gold: #ffd700;
  --neon-silver: #c0c0c0;
  --neon-bronze: #cd7f32;
  --text-primary: #ffffff;
  --text-secondary: #b8b8d0;
  --text-muted: #6b6b80;
  --glow-cyan: 0 0 10px rgba(0, 240, 255, 0.6), 0 0 20px rgba(0, 240, 255, 0.4), 0 0 40px rgba(0, 240, 255, 0.2);
  --glow-magenta: 0 0 10px rgba(255, 0, 255, 0.6), 0 0 20px rgba(255, 0, 255, 0.4), 0 0 40px rgba(255, 0, 255, 0.2);
  --glow-pink: 0 0 10px rgba(255, 0, 110, 0.6), 0 0 20px rgba(255, 0, 110, 0.4);
  --glow-green: 0 0 10px rgba(0, 255, 136, 0.6), 0 0 20px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 255, 136, 0.2);
  --glow-blue: 0 0 10px rgba(0, 102, 255, 0.6), 0 0 20px rgba(0, 102, 255, 0.4);
  --glass-bg: rgba(10, 10, 26, 0.7);
  --glass-border: rgba(0, 240, 255, 0.3);
  --glass-blur: 20px;
  --chatHDesk: 580px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
  --radius-xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #000000 0%, #050510 50%, #0a0a1a 100%);
  z-index: -2;
  animation: bgPulse 15s ease-in-out infinite alternate;
}

@keyframes bgPulse { 0% { opacity: 1; } 100% { opacity: 0.8; } }

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  pointer-events: none;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove { 0% { transform: translateY(0); } 100% { transform: translateY(50px); } }

a { color: var(--neon-cyan); text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
a:hover { color: var(--neon-magenta); text-shadow: var(--glow-magenta); }

/* HEADER */
header {
  position: sticky; /* Sticky header for always-on access */
  top: 0;
  z-index: 10000; /* High z-index to stay on top */
  padding: 8px 18px; /* Slightly reduced padding for sticky mode */
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 2px solid transparent;
  transition: padding 0.3s ease;
  overflow: visible !important; /* Allow button to stick out if needed */
}

header::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-magenta), var(--neon-cyan), transparent);
  animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--neon-cyan) 20%, var(--neon-magenta) 50%, var(--neon-cyan) 80%, transparent 100%);
  opacity: 0.5;
}

header h1 {
  margin: 0 0 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 50%, var(--neon-cyan) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 4s linear infinite;
  filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.4));
}

@keyframes textShine { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

.nav-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.nav-left { display: flex; align-items: center; gap: 16px; }

/* Desktop: Invisible Wrappers */
.info-group-wrapper, .user-group-wrapper {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
}

#clock {
  font-family: 'Rajdhani', monospace;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
  padding: 10px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

#clock::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
  animation: clockShine 3s ease-in-out infinite;
}

@keyframes clockShine { 0% { left: -100%; } 50%, 100% { left: 100%; } }

#weather {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  font-weight: 600;
  color: var(--text-primary);
}

#weather .w-ico { font-size: 20px; color: var(--neon-cyan); filter: none; }
#weather .w-ico i { 
  font-size: 20px; 
  line-height: 1; 
  display: inline-block; 
  color: var(--neon-cyan); 
  background: none !important; 
  -webkit-text-fill-color: currentColor !important; 
}
#weather .w-ico svg { width: 20px; height: 20px; display: inline-block; }
#weather .w-t { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; }

#weather .w-ico i.wx-sun { color: #ffd54f !important; text-shadow: 0 0 8px rgba(255, 213, 79, 0.6); }
#weather .w-ico i.wx-cloudsun { color: #90caf9 !important; text-shadow: 0 0 8px rgba(144, 202, 249, 0.6); }
#weather .w-ico i.wx-cloud { color: #b0bec5 !important; text-shadow: 0 0 8px rgba(176, 190, 197, 0.4); }
#weather .w-ico i.wx-fog { color: #b0bec5 !important; text-shadow: 0 0 8px rgba(176, 190, 197, 0.4); }
#weather .w-ico i.wx-rain { color: #4fc3f7 !important; text-shadow: 0 0 8px rgba(79, 195, 247, 0.6); }
#weather .w-ico i.wx-rain-heavy { color: #29b6f6 !important; text-shadow: 0 0 8px rgba(41, 182, 246, 0.6); }
#weather .w-ico i.wx-snow { color: #e1f5fe !important; text-shadow: 0 0 8px rgba(225, 245, 254, 0.7); }
#weather .w-ico i.wx-storm { color: #ff6e40 !important; text-shadow: 0 0 8px rgba(255, 110, 64, 0.7); }
#weather .wx-default { color: var(--neon-cyan); text-shadow: 0 0 8px rgba(0, 240, 255, 0.5); }
#weather .wx-sun { color: #ffd54f; text-shadow: 0 0 8px rgba(255, 213, 79, 0.6); }
#weather .wx-cloudsun { color: #90caf9; text-shadow: 0 0 8px rgba(144, 202, 249, 0.6); }
#weather .wx-cloud { color: #b0bec5; text-shadow: 0 0 8px rgba(176, 190, 197, 0.4); }
#weather .wx-fog { color: #b0bec5; text-shadow: 0 0 8px rgba(176, 190, 197, 0.4); }
#weather .wx-rain { color: #4fc3f7; text-shadow: 0 0 8px rgba(79, 195, 247, 0.6); }
#weather .wx-rain-heavy { color: #29b6f6; text-shadow: 0 0 8px rgba(41, 182, 246, 0.6); }
#weather .wx-snow { color: #e1f5fe; text-shadow: 0 0 8px rgba(225, 245, 254, 0.7); }
#weather .wx-storm { color: #ff6e40; text-shadow: 0 0 8px rgba(255, 110, 64, 0.7); }

/* Unified colorful gradients for weather icons */
.wm-ico-sun, .wm-ico-cloudsun, .wm-ico-cloud, .wm-ico-smog, .wm-ico-rain, .wm-ico-snow, .wm-ico-thunder {
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.wm-ico-sun { background: linear-gradient(45deg, #ffd54f, #ff8f00); text-shadow: none; }
.wm-ico-cloudsun { background: linear-gradient(45deg, #ffd54f, #90caf9); text-shadow: none; }
.wm-ico-cloud { background: linear-gradient(45deg, #b0bec5, #90a4ae); text-shadow: none; }
.wm-ico-smog { background: linear-gradient(45deg, #b0bec5, #808e95); text-shadow: none; }
.wm-ico-rain { background: linear-gradient(45deg, #4fc3f7, #8e24aa); text-shadow: none; }
.wm-ico-snow { background: linear-gradient(45deg, #e1f5fe, #90caf9); text-shadow: none; }
.wm-ico-thunder { background: linear-gradient(45deg, #ff6e40, #ffd54f); text-shadow: none; }

nav.nav-links { display: flex; flex-wrap: wrap; gap: 12px; }

nav.nav-links a {
  position: relative;
  color: var(--text-primary);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.nav-links a::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

nav.nav-links a:hover::before { left: 100%; }
nav.nav-links a:hover { border-color: var(--neon-cyan); box-shadow: var(--glow-cyan); transform: translateY(-2px); color: var(--neon-cyan); }

nav.nav-links a.is-active {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(255, 0, 255, 0.15));
  border-color: var(--neon-magenta);
  box-shadow: var(--glow-magenta), inset 0 0 30px rgba(255, 0, 255, 0.1);
  color: var(--neon-cyan);
}

nav.nav-links a.is-active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: var(--neon-magenta);
  box-shadow: var(--glow-magenta);
}

@media (max-width: 768px) {
  header { padding: 10px 12px; }
  .nav-row { gap: 12px; }
  
  /* Mobile: Show Wrappers */
  .nav-left { flex: 0 0 100%; display: flex !important; flex-direction: column; gap: 10px; }
  
  .info-group-wrapper, .user-group-wrapper {
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      width: 96% !important;
      margin: 5px auto !important;
      padding: 6px 8px !important;
      border: 1px solid #00d2ff !important;
      background: rgba(0, 0, 0, 0.6) !important;
      border-radius: 12px !important;
      box-sizing: border-box !important;
  }
  
  /* Ensure User Info expands */
  .user-group-wrapper #user-info {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .info-group-wrapper span, .info-group-wrapper div,
  .user-group-wrapper span, .user-group-wrapper div, .user-group-wrapper button {
      font-size: 12px !important;
      margin: 0 !important;
  }

  #clock, #weather { flex: 0 0 auto; justify-content: center; font-size: 12px; padding: 4px; background: transparent; border: none; }
  #site-visitors { margin-left: 0 !important; }

  nav.nav-links { flex: 1; width: 100%; }
  nav.nav-links a { flex: 1; text-align: center; padding: 8px 10px; font-size: 12px; white-space: nowrap; }
}

/* 5. DJ BOX - RELATIVE POSITIONING FOR ABSOLUTE STATS */ 
aside.card { 
    height: 100% !important; 
    display: flex !important; 
    flex-direction: column !important; 
    padding: 15px !important; 
    border: 2px solid var(--glass-border); 
    position: relative; 
    margin-top: 0 !important;
}
/* DJ Box Neon Glow */
.home-split aside.card {
  border: 2px solid transparent !important;
  border-image: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta)) 1 !important;
  border-radius: 0 !important;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.25), 0 0 10px rgba(255, 0, 255, 0.15);
  animation: dj-glow 4s ease-in-out infinite;
}
.home-split aside.card::before { display: none !important; border-radius: 0 !important; }

@keyframes dj-glow {
  0% { box-shadow: 0 0 14px rgba(0, 240, 255, 0.2), 0 0 8px rgba(255, 0, 255, 0.12); }
  50% { box-shadow: 0 0 28px rgba(0, 240, 255, 0.4), 0 0 16px rgba(255, 0, 255, 0.3); }
  100% { box-shadow: 0 0 14px rgba(0, 240, 255, 0.2), 0 0 8px rgba(255, 0, 255, 0.12); }
}
@media only screen and (min-width: 769px) {
  .home-split aside.card { transform: translateY(20px); }
}

/* MAIN */
main { padding: 16px; max-width: 1600px; margin: 0 auto; }

.card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), var(--neon-blue), var(--neon-cyan));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
  animation: borderRotate 6s linear infinite;
}

@keyframes borderRotate { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

/* 3. ПЕРФЕКТНО ИЗРАВНЯВАНЕ НА ЕДИН РЕД - STRETCH MODE */ 
.home-split { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 20px; 
    align-items: stretch; /* РАВНИ ПО ВИСОЧИНА */ 
}

/* Сбиване на Everest Cast елементите */ 
.djbar { 
    display: flex; 
    flex-direction: column; 
    gap: 0; 
}
.dj-leftcol { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    align-items: center; 
    width: 100%;
    margin-bottom: 0;
}
.dj-left { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
}
@media only screen and (min-width: 769px) {
  .sc-widget-wrapper { margin: 0 0 0 20px !important; }
  .sc-status-widget { margin: 0 !important; }
  div[is="stream-status-widget"] { display: block; text-align: left; margin: 0 !important; }
  div[is="stream-status-widget"] img { margin: 0 !important; }
}

/* ЧАТ (ЛЯВА КОЛОНА) */
.embed-chat {
    width: 100%;
    height: 100%; /* Заема колкото му трябва */
    min-height: 500px;
    margin-top: 28px;
}
/* 4. ФИКСИРАНЕ НА ЧАТА ДА СЕ РАЗТЯГА */
.embed-chat iframe {
    display: block;
    width: 100%;
    height: 100%; /* Ще заеме височината на DJ кутията, ако тя е по-голяма */
    min-height: var(--chatHDesk); /* Поне 580px */
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta)) 1;
    border-radius: 0;
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.3), 0 0 10px rgba(255, 0, 255, 0.2);
    animation: chat-glow 3s ease-in-out infinite, chat-border-dance 6s linear infinite;
}

@keyframes chat-glow {
  0% { box-shadow: 0 0 14px rgba(0, 240, 255, 0.25), 0 0 8px rgba(255, 0, 255, 0.15); }
  50% { box-shadow: 0 0 28px rgba(0, 240, 255, 0.45), 0 0 16px rgba(255, 0, 255, 0.35); }
  100% { box-shadow: 0 0 14px rgba(0, 240, 255, 0.25), 0 0 8px rgba(255, 0, 255, 0.15); }
}

@keyframes chat-border-dance {
  0% { border-image-source: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), var(--neon-cyan)); }
  50% { border-image-source: linear-gradient(135deg, var(--neon-magenta), var(--neon-cyan), var(--neon-magenta)); }
  100% { border-image-source: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), var(--neon-cyan)); }
}

/* Мобилни корекции по оригинал */ 
@media (max-width: 768px) { 
    .home-split { grid-template-columns: 1fr; } 
    aside.card { height: auto !important; max-height: none !important; } 
}



/* Ако искаме лявата част да е малко по-широка, но нека бъде 100% за мобилност */
.dj-leftcol { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    align-items: center; /* Центриране */
    width: 100%;
}

/* 6. ПРЕМЕСТВАНЕ НА DJ СНИМКАТА И ИНФОТО В ЛЯВО */
.dj-left { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    justify-content: flex-start; /* Изравняване в ляво */
    width: 100%;
    margin-left: 20px; /* Отстъп от левия край */
}

/* Ако е нужно да преместим целия контейнер */
.dj-leftcol {
    align-items: flex-start; /* Подравняване в ляво */
}

/* Widget Wrapper to prevent overflow */
.sc-widget-wrapper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Widget Original Size */ 
.sc-status-widget { 
    transform: none; 
    transform-origin: top left; 
    margin: 10px 0; 
}

.mini-row { 
    width: 100%; 
    justify-content: center; 
}

/* Listen widget (embedded player) sizing */
.listen-widget { width: 300px; margin: 10px auto 0; }
.listen-widget iframe { display: block; width: 100%; height: 220px; border: 0; background: transparent; }

/* Stats Positioned Top Right */ 
.dj-stats-mini { 
    position: static;
    margin-top: 15px;
    display: flex; 
    flex-direction: row; /* Една до друга */
    gap: 10px; 
    z-index: 10;
    width: 100%;
}
.dj-stats-mini .mstat {
    flex: 1;
}
.dj-stats-mini .mstat {
  min-height: 64px;
}

/* ЧАТЪТ (ДЯСНАТА ЧАСТ) - Правим го да изглежда като отделен блок */
.embed-chat {
    width: 100%;
    margin-top: 20px;
}

.dj-ava {
  width: 110px; height: 110px;
  border-radius: 18px;
  object-fit: cover;
  border: 2px solid rgba(0,210,255,0.45);
  box-shadow: 0 0 16px rgba(0,210,255,0.35);
}

.dj-info { display: flex; flex-direction: column; gap: 4px; }
.dj-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--neon-cyan); font-weight: 700; opacity: 0.8; }
.dj-name { font-family: 'Rajdhani', sans-serif; font-size: 24px; font-weight: 700; color: #fff; line-height: 1; text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }

/* STATS CARDS */
.mstat {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 25px;
  padding: 12px 16px;
  min-width: 120px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mstat:hover { background: rgba(0, 240, 255, 0.1); border-color: var(--neon-cyan); transform: translateY(-2px); }
.mstat.magenta { background: rgba(255, 0, 255, 0.05); border-color: rgba(255, 0, 255, 0.2); }
.mstat.magenta:hover { background: rgba(255, 0, 255, 0.1); border-color: var(--neon-magenta); }

.mstat .lab { font-size: 10px; text-transform: uppercase; color: var(--text-secondary); font-weight: 700; letter-spacing: 1px; }
.mstat .val { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: #fff; }

/* TICKER */
.ticker {
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.1), transparent);
  border-left: 3px solid var(--neon-cyan);
  padding: 12px 20px;
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  position: relative;
}

.ticker-label { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--neon-cyan); white-space: nowrap; }
.ticker-track { display: inline-block; white-space: nowrap; will-change: transform; animation: ticker-scroll 80s linear infinite; animation-delay: 1s; animation-fill-mode: both; }
.ticker-text { font-weight: 600; color: #fff; display: inline-block; padding-right: 50px; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@media only screen and (max-width: 768px) {
  .ticker-track { animation-duration: 100s; }
}

/* FEATURE GRID */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 40px; }

.feature {
  position: relative;
  height: 400px;
  display: grid;
  grid-template-rows: 60% 40%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-tertiary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6); }

.feature-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.feature:hover .feature-img { transform: scale(1.1); }

.feature-body { padding: 24px; background: linear-gradient(0deg, var(--bg-tertiary) 0%, rgba(10, 10, 26, 0.8) 100%); }
.feature-title { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: var(--neon-cyan); margin-bottom: 8px; }
.feature-desc { font-size: 15px; color: var(--text-secondary); }

/* SIDEBAR LIST */
.sidebar-list { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }

.side-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.side-item:hover { background: rgba(255, 255, 255, 0.08); transform: translateX(5px); }

.side-item img { width: 100%; height: 80px; object-fit: cover; }
.side-item-body { padding: 12px 12px 12px 0; display: flex; flex-direction: column; justify-content: center; }
.side-item-title { font-size: 14px; font-weight: 600; line-height: 1.4; color: #fff; }

/* NEWS SECTION */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 10px;
}
.news-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(0,240,255,0.3));
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.news-card {
    position: relative;
    background: #0b0b16;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,240,255,0.45);
    box-shadow: 0 22px 50px rgba(0,0,0,0.65), 0 0 22px rgba(0,240,255,0.18);
}

.news-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--nc-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1);
  transition: transform 0.6s ease;
  z-index: 0;
}

.news-card:hover::after { transform: scale(1.08); }

.news-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 500px at 20% 0%, rgba(0,240,255,0.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
}

.news-card:nth-child(6n+1) { height: 360px; }
.news-card:nth-child(6n+3) { height: 330px; }
.news-card:nth-child(6n+5) { height: 280px; }

.nc-live {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.nc-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 14px rgba(255,59,48,0.9);
  animation: ncLivePulse 1.2s ease-in-out infinite;
}

@keyframes ncLivePulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.35); opacity: 1; }
}

.nc-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-cyan);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.nc-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nc-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 8px 22px rgba(0,0,0,0.65);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card:hover .nc-title {
  color: var(--neon-cyan);
  text-shadow: 0 0 14px rgba(0,240,255,0.35), 0 8px 22px rgba(0,0,0,0.7);
}

.nc-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 2. CARD WITHOUT IMAGE (TYPOGRAPHY MODE) */
.news-card.no-image {
    background: linear-gradient(135deg, var(--bg-tertiary), #1a1a40);
    border: 2px solid var(--neon-cyan);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.news-card.no-image::before,
.news-card.no-image::after { display: none; }
.news-card.no-image .nc-img-wrap { display: none; }
.news-card.no-image .nc-body { justify-content: center; height: 100%; }
.news-card.no-image .nc-title {
  font-size: 24px; /* Large bold font */
  font-weight: 900;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px rgba(0,240,255,0.4);
  line-clamp: 6;
  -webkit-line-clamp: 6;
}
.news-card.no-image:hover {
    background: linear-gradient(135deg, #1a1a40, var(--bg-tertiary));
    border-color: var(--neon-magenta);
}
.news-card.no-image:hover .nc-title {
    color: var(--neon-magenta);
    text-shadow: 0 0 15px rgba(255,0,255,0.4);
}

.nc-date {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 10px;
    text-align: right;
    font-weight: 600;
}
.news-card.no-image .nc-date { color: rgba(255,255,255,0.6); margin-top: 20px; }

.nc-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,0,255,0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.news-card:hover .nc-glow { opacity: 1; }

/* Placeholder Pulse */
.placeholder { animation: pulsePlace 2s infinite; }
@keyframes pulsePlace { 0% { opacity: 0.5; } 50% { opacity: 0.8; } 100% { opacity: 0.5; } }


/* DJ LOGIN */
.dj-login-form {
  max-width: 400px;
  margin: 100px auto;
  text-align: center;
  background: linear-gradient(145deg, #0a0a1a, #1a1a2e);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
}

.dj-login-form h2 { font-family: 'Rajdhani', sans-serif; color: var(--neon-cyan); margin-bottom: 30px; text-shadow: 0 0 20px rgba(0, 240, 255, 0.8); }

.dj-login-form input {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

.dj-login-form input:focus { outline: none; border-color: var(--neon-magenta); box-shadow: 0 0 20px rgba(255, 0, 255, 0.5); }

.dj-login-form button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  border: none;
  border-radius: 10px;
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.dj-login-form button:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 240, 255, 0.8); }

/* POZDRAVI */
.floating-pozdravi-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  color: #000;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), 0 0 60px rgba(255, 0, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.floating-pozdravi-btn:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(0, 240, 255, 0.8), 0 0 80px rgba(255, 0, 255, 0.6); }

.dj-live-indicator { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; animation: pulse-live 2s infinite; margin-left: 4px; }
.dj-live-indicator.autodj { background: #fbbf24; animation: none; }
@keyframes pulse-live { 0%, 100% { opacity: 1; box-shadow: 0 0 8px #22c55e; } 50% { opacity: 0.6; box-shadow: 0 0 15px #22c55e; } }
.dj-status-text { font-size: 11px; opacity: 0.9; font-weight: 600; display: none; }
@media (min-width: 640px) { .dj-status-text { display: inline; } }

.wm-ico-sun { background: linear-gradient(135deg, #ffcc00, #ffaa00); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 10px rgba(255,204,0,0.6); }
.wm-ico-cloudsun { background: linear-gradient(135deg, #ffd966, #00ccff); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 10px rgba(0,204,255,0.5); }
.wm-ico-cloud { background: linear-gradient(135deg, #9aa0a6, #5b6e7d); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 10px rgba(90,110,125,0.5); }
.wm-ico-smog { background: linear-gradient(135deg, #a0a0a0, #7a7a7a); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 10px rgba(160,160,160,0.5); }
.wm-ico-rain { background: linear-gradient(135deg, #1e90ff, #00d2ff); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 10px rgba(30,144,255,0.6); }
.wm-ico-snow { background: linear-gradient(135deg, #8fd3ff, #ffffff); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 10px rgba(143,211,255,0.6); }
.wm-ico-thunder { background: linear-gradient(135deg, #ffa500, #ff3b3b); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 10px rgba(255,165,0,0.6); }

.pozdravi-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.pozdravi-modal-content {
  background: linear-gradient(145deg, #0a0a1a, #1a1a2e);
  border: 2px solid var(--neon-cyan);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
  position: relative;
}

.pozdravi-close { position: absolute; right: 20px; top: 20px; font-size: 30px; color: var(--neon-cyan); cursor: pointer; transition: color 0.3s; }
.pozdravi-close:hover { color: var(--neon-magenta); }
.pozdravi-modal-content h2 { font-family: 'Rajdhani', sans-serif; color: var(--neon-cyan); text-align: center; margin-bottom: 30px; text-shadow: 0 0 20px rgba(0, 240, 255, 0.8); }

.pozdravi-modal-content input, .pozdravi-modal-content textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
}

.pozdravi-modal-content textarea { min-height: 120px; resize: vertical; }
.pozdravi-modal-content input:focus, .pozdravi-modal-content textarea:focus { outline: none; border-color: var(--neon-magenta); box-shadow: 0 0 20px rgba(255, 0, 255, 0.5); }

.pozdravi-modal-content button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  border: none;
  border-radius: 10px;
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.pozdravi-modal-content button:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 240, 255, 0.8); }

.pozdravi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.pozdravi-col h3 { text-align: center; margin-bottom: 20px; font-family: 'Rajdhani', sans-serif; font-size: 24px; text-shadow: 0 0 20px currentColor; }
.count-badge { display: inline-block; background: var(--neon-pink); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 18px; margin-left: 10px; box-shadow: 0 0 20px rgba(255, 0, 110, 0.8); }

.pozdravi-list {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--neon-cyan);
  border-radius: 15px;
  padding: 20px;
  min-height: 400px;
  max-height: 600px;
  overflow-y: auto;
}

.pozdrav-item {
  background: linear-gradient(145deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 255, 0.1));
  border: 1px solid var(--neon-cyan);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.pozdrav-item:hover { transform: translateY(-3px); box-shadow: 0 5px 20px rgba(0, 240, 255, 0.5); }
.pozdrav-item.done { opacity: 0.6; border-color: var(--neon-green); }
.pozdrav-header { display: flex; justify-content: space-between; margin-bottom: 10px; color: var(--neon-cyan); font-family: 'Rajdhani', sans-serif; }
.pozdrav-time { color: #888; font-size: 14px; }
.pozdrav-message { color: #fff; line-height: 1.5; margin-bottom: 15px; }

.pozdrav-done-btn {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  border: none;
  border-radius: 5px;
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.pozdrav-done-btn:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(0, 255, 136, 0.8); }

@media (max-width: 768px) {
  .pozdravi-grid { grid-template-columns: 1fr; }
  .floating-pozdravi-btn { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 14px; }
  .pozdravi-modal-content { padding: 30px 20px; }
}

/* USER PROFILE */
@keyframes pulse-human {
  0% { transform: scale(1); opacity: 1; text-shadow: 0 0 5px #00f2ff; }
  50% { transform: scale(1.2); opacity: 0.7; text-shadow: 0 0 15px #00f2ff; }
  100% { transform: scale(1); opacity: 1; text-shadow: 0 0 5px #00f2ff; }
}

.pulsing-user {
  display: inline-block;
  animation: pulse-human 2s infinite;
  margin-right: 8px;
}

.logout-btn {
  background: transparent;
  border: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9em;
  color: var(--text-primary);
  cursor: pointer;
  text-shadow: 0 0 5px #ff4d4d, 0 0 10px #ff4d4d;
  transition: transform 0.3s;
  padding: 0 10px;
  letter-spacing: 1px;
}

.logout-btn:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px #ff4d4d, 0 0 20px #ff4d4d;
}

.xp-counter {
  margin: 0 10px;
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700;
  font-family: monospace;
  font-weight: bold;
}

.user-level {
  margin: 0 5px;
  color: #d946ef;
  text-shadow: 0 0 10px #d946ef;
  font-family: 'Rajdhani', sans-serif;
  font-weight: bold;
}

#user-info {
  display: inline-flex;
  align-items: center;
  margin-left: 15px;
  color: #00ffcc;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

/* FOOTER */
footer {
  padding: 20px;
  margin-top: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border-top: 2px solid transparent;
  position: relative;
  text-align: center;
}

footer::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.8), transparent);
  animation: borderGlow 3s linear infinite;
}

.wrap { max-width: 1200px; margin: 0 auto; }
footer { background: rgba(5, 5, 16, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid rgba(0, 240, 255, 0.2); padding: 18px 0; }
.footer-clean { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer-soc-clean { display: flex; gap: 12px; align-items: center; }
.footer-soc-clean a { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); transition: transform .2s ease; }
.footer-info-clean { display: flex; gap: 12px; align-items: center; justify-content: center; }
.footer-info-clean .mail { display: inline-flex; align-items: center; gap: 8px; }
.footer-info-clean .mail-link { font-family: 'Rajdhani', sans-serif; font-weight: 800; letter-spacing: 0.5px; color: #fff; }
.footer-info-clean svg { width: 20px; height: 20px; fill: var(--neon-cyan); filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.5)); }
.footer-nav-clean { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; align-items: center; justify-content: flex-end; }
.footer-nav-clean .footer-action-btn { width: 100%; }

.footer-contact-form { display: flex; gap: 10px; align-items: center; }
.footer-contact-form input { padding: 8px 10px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: #fff; font-family: 'Rajdhani', sans-serif; font-weight: 700; letter-spacing: 0.6px; width: 150px; transition: box-shadow .2s ease, border-color .2s ease; }
.footer-contact-form input#contactMessage { width: 220px; }
.footer-contact-form input::placeholder { color: rgba(255,255,255,0.7); }
.footer-contact-form input:focus { outline: none; border-color: rgba(0, 240, 255, 0.35); box-shadow: 0 8px 16px rgba(0, 240, 255, 0.25); }
.contact-status { margin-left: 8px; color: #fff; font-family: 'Rajdhani', sans-serif; font-weight: 800; letter-spacing: 0.5px; }

.footer-soc a {
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 255, 0.1));
  border: 1px solid var(--neon-cyan);
  border-radius: 14px;
  box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.1);
  transition: all 0.3s;
}

.footer-soc a:hover { transform: scale(1.2) rotate(5deg); border-color: var(--neon-magenta); box-shadow: var(--glow-magenta), inset 0 0 25px rgba(255, 0, 255, 0.2); }
.footer-soc a img { width: 32px; height: 32px; filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6)); }

@media (max-width: 768px) {
  .footer-clean { flex-direction: column; gap: 14px; text-align: center; }
  .footer-soc-clean { justify-content: center; flex-wrap: wrap; }
  .footer-nav-clean { justify-content: center; grid-template-columns: repeat(3, 1fr); }
  .footer-contact-form { flex-direction: column; width: 100%; gap: 8px; }
  .footer-contact-form input, .footer-contact-form .footer-action-btn { width: 100%; }
  .contact-status { margin-left: 0; text-align: center; }
}

.mail-loc { color: var(--text-muted); font-weight: 600; }
.footer-action-btn { display: inline-flex; align-items: center; justify-content: center; padding: 9px 16px; height: 44px; white-space: nowrap; border: 1px solid rgba(0, 240, 255, 0.25); color: #fff; text-decoration: none; font-family: 'Rajdhani', sans-serif; font-weight: 900; letter-spacing: 1px; background: rgba(255,255,255,0.06); border-radius: 12px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, filter .2s ease; box-shadow: 0 8px 16px rgba(0, 240, 255, 0.35); }
.footer-action-btn.news { box-shadow: 0 8px 16px rgba(0, 240, 255, 0.35); border-color: rgba(0, 240, 255, 0.25); }
.footer-action-btn.poz { box-shadow: 0 8px 16px rgba(0, 240, 255, 0.35); border-color: rgba(0, 240, 255, 0.25); }
.footer-action-btn.gp { border-color: rgba(163, 230, 53, 0.45); box-shadow: 0 8px 16px rgba(163, 230, 53, 0.18); }
.footer-action-btn.gp:hover { box-shadow: 0 12px 28px rgba(163, 230, 53, 0.28); border-color: rgba(163, 230, 53, 0.65); }
.footer-action-btn i { margin-right: 8px; }
.footer-action-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0, 240, 255, 0.55); border-color: rgba(0, 240, 255, 0.45); }
.footer-soc-clean a img { width: 32px; height: 32px; display: block; object-fit: contain; filter: none; opacity: 1; transition: transform .2s ease, filter .2s ease, opacity .2s ease; }
.footer-soc-clean a:hover img { transform: scale(1.1); }
.muted { color: var(--text-muted); }

/* Google Play HD Badge tweak */
.footer-action-btn.gp { padding: 0 !important; background: transparent !important; border: none !important; box-shadow: none !important; }
.footer-action-btn.gp .gp-badge { height: 44px; width: auto; display: block; margin: 0 auto; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--neon-cyan), var(--neon-magenta)); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--neon-magenta), var(--neon-cyan)); }
::selection { background: var(--neon-cyan); color: #000; }

/* SVG color isolation helper */
.svg-keep-colors,
.svg-keep-colors *,
.svg-keep-colors path,
.svg-keep-colors circle,
.svg-keep-colors rect,
.svg-keep-colors polygon,
.svg-keep-colors g {
  color: revert !important;
  fill: revert !important;
  stroke: revert !important;
}

/* SOCIAL SIDEBAR */
.social-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.social-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  font-size: 42px; /* Increased size */
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: transparent;
  border: none;
  text-decoration: none;
}

.social-btn:hover {
  transform: scale(1.2);
}

/* Google Multi-Color Gradient */
.social-btn.google {
  background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.social-btn.google:hover {
  filter: drop-shadow(0 0 15px rgba(66, 133, 244, 0.6));
}

/* Facebook Official Blue */
.social-btn.facebook {
  color: #1877F2;
  filter: drop-shadow(0 0 5px rgba(24, 119, 242, 0.3));
}

.social-btn.facebook:hover {
  color: #1877F2;
  filter: drop-shadow(0 0 15px rgba(24, 119, 242, 0.8));
}

@media (max-width: 768px) {
  .social-sidebar {
    right: 10px;
    gap: 15px;
  }
  .social-btn {
    font-size: 32px;
  }
}

/* FULL MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
  :root {
    --chatHDesk: 580px; /* ВРЪЩАМЕ ГОЛЯМАТА ВИСОЧИНА ЗА ДА ИМА ВЪЗДУХ */
  }
  
  body { font-size: 14px; }
  
  header {
    padding: 12px;
    flex-direction: column;
    gap: 10px;
  }
  
  .nav-row {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  
  .nav-left {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }
  
  .info-group-wrapper {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100% !important;
  }
  
  #clock, #weather, #site-visitors {
    width: 100% !important;
    justify-content: center !important;
  }
  
  #clock, #weather {
    font-size: 12px;
    padding: 8px 10px;
    min-width: auto;
    flex: 1;
  }
  
  nav.nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  nav.nav-links a {
    padding: 8px 12px;
    font-size: 11px;
    flex: 1 1 auto;
    text-align: center;
    min-width: 60px;
  }
  
  main { padding: 10px; }
  
  .card { padding: 12px; border-radius: 14px; }
  
  .home-split { grid-template-columns: 1fr; gap: 10px; }
  
  .embed-chat { min-height: 420px; }
  .embed-chat iframe { height: 460px; min-height: 360px; }
  
  .djbar {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }
  
  .dj-leftcol { align-items: center; }
  
  .dj-left {
    flex-direction: column;
    text-align: center;
  }

  .dj-left { margin-left: 0 !important; justify-content: center !important; }
  .dj-leftcol { width: 100% !important; }
  .sc-widget-wrapper { width: 100% !important; max-width: none !important; margin: 0 !important; }
  
  .dj-ava {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0,210,255,0.45);
    box-shadow: 0 0 14px rgba(0,210,255,0.35);
  }
  
  .dj-name { font-size: 20px; }
  
  .mini-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .mini-row audio { width: 100% !important; }
  
  .dj-stats-mini {
    position: static !important;
    top: auto !important;
    right: auto !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-content: center;
  }
  
  .mstat {
    min-width: 0 !important;
    width: 100%;
    padding: 10px 12px;
  }
  
  .mstat .lab { font-size: 10px; }
  .mstat .val { font-size: 16px; }
  
  .ticker { padding: 10px 12px; margin-top: 14px !important; }
  .ticker-text { font-size: 13px; }
  
  .feature {
    min-height: 350px;
    grid-template-rows: 55% 45%;
  }
  
  .feature-title { font-size: 18px; }
  .feature-desc { font-size: 14px; }
  
  .side-item {
    grid-template-columns: 80px 1fr;
  }
  
  .side-item img {
    width: 80px;
    height: 60px;
  }
  
  .top-item .cover {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  header { padding: 8px 10px; }
  
  .nav-left {
    flex-direction: column;
    gap: 6px;
  }
  
  #clock, #weather {
    width: 100%;
    justify-content: center;
  }
  
  nav.nav-links a {
    padding: 6px 8px;
    font-size: 10px;
  }
  
  main { padding: 6px; }
  
  .card { padding: 10px; }
  
  .embed-chat { min-height: 360px; }
  .embed-chat iframe { height: 460px; min-height: 360px; }
  
  .dj-ava {
    width: 92px;
    height: 92px;
    border: 2px solid rgba(0,210,255,0.45);
    box-shadow: 0 0 12px rgba(0,210,255,0.35);
  }
  
  .dj-name { font-size: 18px; }
  
  .mstat {
    min-width: 0 !important;
    width: 100%;
    padding: 8px 10px;
  }

  .dj-stats-mini { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ticker { margin-top: 12px !important; }
}

html.menu-open, body.menu-open { overflow: hidden !important; }

@media only screen and (min-width: 769px) {
  header #menuBtn.menu-btn {
    position: relative !important;
    top: auto !important;
    right: auto !important;
  }
}

@media only screen and (max-width: 768px) {
  header .nav-left { display: flex !important; }
}

@media (max-width: 480px) {
  .side-menu-panel { width: 86vw !important; max-width: 320px !important; padding-top: calc(80px + env(safe-area-inset-top)) !important; }
}

/* FOOTER THEME OVERRIDES */
footer { background: rgba(5, 5, 16, 0.9) !important; backdrop-filter: blur(20px) !important; border-top: 1px solid rgba(0, 240, 255, 0.2) !important; }
footer::before { background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.8), transparent) !important; }
.footer-action-btn { border-color: rgba(0, 240, 255, 0.25) !important; box-shadow: 0 8px 16px rgba(0, 240, 255, 0.35) !important; }
.footer-action-btn:hover { box-shadow: 0 12px 28px rgba(0, 240, 255, 0.55) !important; }
.footer-soc-clean a img { filter: none !important; opacity: 1 !important; }
.footer-clean { display: flex !important; justify-content: space-between !important; align-items: center !important; gap: 16px !important; }
  .chart-tabs { grid-template-columns: repeat(2, 1fr) !important; }
  .chart-row .song-title { white-space: normal !important; }
  .chart-scroll-box { height: auto !important; max-height: 70vh !important; }

.footer-bottom { margin-top: 16px; position: relative; }
.footer-bottom::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(0,240,255,0.9), rgba(255,0,255,0.9), transparent); filter: drop-shadow(0 0 8px rgba(0,240,255,0.6)); animation: footerNeonFlow 6s linear infinite; }
.footer-bottom-inner { text-align: center; padding: 14px 10px; font-family: 'Rajdhani', sans-serif; font-weight: 900; letter-spacing: 1px; color: #cfe9ff; text-shadow: 0 0 10px rgba(0,240,255,0.4); background: radial-gradient(1200px 120px at 50% 0%, rgba(0,240,255,0.06), transparent 60%); border-radius: 0 0 16px 16px; }
@keyframes footerNeonFlow { 0% { opacity: 0.7; } 50% { opacity: 1; } 100% { opacity: 0.7; } }

@media (min-width: 769px) and (max-width: 1024px) {
  .chart-tabs { grid-template-columns: repeat(3, 1fr) !important; max-width: 640px !important; }
  .chart-tab-btn { font-size: 14px !important; }
}

@media (max-width: 768px) {
  .chart-wrapper { padding-left: 8px; padding-right: 8px; }
}

@media (max-width: 600px) {
  .video-modal-content { width: 95% !important; }
}

/* Live Dot Indicator */
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    margin-right: 5px;
    box-shadow: 0 0 5px #00ff00;
    animation: pulse-dot 1.5s infinite;
    vertical-align: middle;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 2px rgba(0,255,0,0.5); }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 8px rgba(0,255,0,0.9); }
    100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 2px rgba(0,255,0,0.5); }
}

.news-ticker-bar {
  position: relative;
  width: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 240, 255, 0.22);
  border-bottom: 1px solid rgba(255, 0, 255, 0.18);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45), 0 0 18px rgba(0,240,255,0.12);
  height: 56px;
  display: block;
  margin-top: 10px;
  border-radius: 16px;
  overflow: hidden;
}

.news-ticker-inner {
  height: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 18px;
}

.news-ticker-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 900;
  letter-spacing: 1.6px;
  font-size: 14px;
  color: var(--neon-gold);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  background: rgba(255, 215, 0, 0.06);
}

.news-ticker-viewport {
  overflow: hidden;
  width: 100%;
}

.news-ticker-marquee {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  will-change: transform;
  animation: newsTickerScroll var(--ntb-dur, 110s) linear infinite;
}

.news-ticker-bar:hover .news-ticker-marquee {
  animation-play-state: paused;
}

.news-ticker-bar.is-paused .news-ticker-marquee {
  animation-play-state: paused;
}

.news-ticker-marquee > .news-ticker-line {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}

.news-ticker-link {
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.3px;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.92;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.news-ticker-sep {
  color: rgba(0, 240, 255, 0.7);
  text-shadow: 0 0 10px rgba(0,240,255,0.35);
}

.news-ticker-link:hover {
  opacity: 1;
  color: var(--neon-cyan);
}

@keyframes newsTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .news-ticker-bar { height: 48px; }
  .news-ticker-inner { height: 48px; padding: 0 12px; gap: 10px; }
  .news-ticker-label { font-size: 13px; padding: 6px 10px; }
  .news-ticker-link { font-size: 15px; }
}

.sidebar-widget.widget-weather .widget-title {
  text-align: center;
  color: #fff;
}

.wm-city-sofia { color: var(--neon-cyan); text-shadow: 0 0 10px rgba(0,240,255,0.5); }
.wm-city-plovdiv { color: var(--neon-magenta); text-shadow: 0 0 10px rgba(255,0,255,0.5); }
.wm-city-varna { color: #ffff00; text-shadow: 0 0 10px rgba(255,255,0,0.5); }
 
 .sidebar-widget.widget-weather .wm-temp {
   color: #fff;
 }

.astro-layout { max-width: 1200px; margin: 0 auto; padding: 20px; display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.astro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 25px; align-items: stretch; }
.astro-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 16px; transition: all 0.2s ease; cursor: pointer; position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: 180px; }
.astro-card:hover { transform: translateY(-3px); border-color: var(--neon-cyan); box-shadow: var(--glow-cyan); background: rgba(10, 10, 26, 0.9); }
.astro-card-header { display: flex; align-items: center; margin-bottom: 12px; min-height: 40px; }
.astro-zodiac-icon { font-size: 2rem; margin-right: 12px; opacity: 0.9; }
.astro-card-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; margin: 0; }
.astro-card-subtitle { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; margin: 0; }
.astro-card-preview { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.4; min-height: 36px; overflow: hidden; }
.astro-read-btn { background: transparent; color: var(--neon-cyan); border: 2px solid var(--neon-cyan); padding: 10px; border-radius: 10px; font-weight: 800; cursor: pointer; width: 100%; text-transform: uppercase; font-size: 0.85rem; font-family: 'Rajdhani', sans-serif; transition: 0.2s; margin-top: auto; }
.astro-read-btn:hover { background: var(--neon-cyan); color: #000; }
.astro-magic { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 20px; display: flex; align-items: center; justify-content: space-between; }
.astro-magic .magic-text h3 { margin: 0; color: var(--neon-cyan); font-family: 'Rajdhani', sans-serif; }
.astro-magic .magic-text p { margin: 5px 0 0; color: var(--text-secondary); font-size: 0.9rem; }
.astro-layout .magic-ball-btn { width: 60px; height: 60px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #444, #000); border: 2px solid #333; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; cursor: pointer; box-shadow: 0 0 15px rgba(0, 240, 255, 0.1); transition: 0.3s; }
.astro-layout .magic-ball-btn:hover { transform: scale(1.1); border-color: var(--neon-cyan); box-shadow: 0 0 20px var(--neon-cyan); }
.astro-sidebar { position: sticky; top: 74px; }
.astro-sidebar-box { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 16px; margin-bottom: 20px; }
.astro-sb-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem; color: #fff; text-transform: uppercase; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 8px; }
.astro-layout .share-buttons { display: none; }
.astro-sidebar-list { list-style: none; padding: 0; margin: 0; }
.astro-sidebar-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.12); cursor: pointer; display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 0.95rem; transition: 0.2s; }
.astro-sidebar-list li:hover { color: var(--neon-magenta); padding-left: 5px; }
.astro-num-input { width: 100%; padding: 10px; background: #000; border: 1px solid #333; color: #fff; border-radius: 10px; margin-bottom: 12px; text-align: center; font-size: 0.95rem; }
.astro-layout .astro-action-btn { width: 100%; padding: 12px; border: none; border-radius: 12px; font-weight: 900; cursor: pointer; text-transform: uppercase; font-family: 'Rajdhani', sans-serif; font-size: 0.95rem; transition: 0.2s; }
.astro-layout .btn-purple { background: linear-gradient(90deg, #aa00ff, #d500f9); color: white; }
.astro-layout .btn-green { background: linear-gradient(90deg, #00c853, #b2ff59); color: black; }
.astro-layout .btn-pink { background: linear-gradient(90deg, var(--neon-magenta), #ff006e); color: white; }
.astro-layout .astro-slot { text-align: center; }
.astro-layout .xp-display { font-size: 0.8rem; color: var(--neon-gold); border: 1px solid #333; padding: 2px 8px; border-radius: 8px; display: inline-block; margin-bottom: 5px; }
.astro-layout .astro-reels { display: flex; justify-content: center; gap: 6px; margin: 8px 0; background: #000; padding: 10px; border-radius: 12px; border: 1px solid #333; }
.astro-layout .astro-reel { width: 42px; height: 50px; background: #222; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; border-radius: 8px; }
.astro-reel.spinning { animation: spin 0.12s infinite linear; opacity: 0.5; }
@keyframes spin { 0% { transform: translateY(-2px); } 50% { transform: translateY(2px); } 100% { transform: translateY(-2px); } }
.astro-slot-msg { margin-top: 6px; color: var(--text-secondary); }
.astro-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 20000; backdrop-filter: blur(4px); }
.astro-modal-content { background: #1a1a20; margin: 12% auto; padding: 0; width: 90%; max-width: 480px; border: 1px solid var(--neon-cyan); border-radius: 12px; box-shadow: 0 0 30px rgba(0,0,0,0.5); }
.astro-modal-header { background: #222; padding: 12px 15px; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; border-top-left-radius: 12px; border-top-right-radius: 12px; }
.astro-modal-header h3 { margin: 0; font-size: 1.1rem; color: #fff; }
.astro-modal-body { padding: 20px; text-align: center; color: #ddd; line-height: 1.5; font-size: 1rem; }
.astro-close-btn { background: transparent; border: none; color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }

/* Responsiveness for Astrology Page */
@media (min-width: 1024px) {
  .astro-layout { grid-template-columns: 1fr 340px; }
}
@media (max-width: 1200px) {
  .astro-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .astro-layout { grid-template-columns: 1fr; gap: 20px; }
  .astro-grid { grid-template-columns: 1fr; }
  .astro-magic { flex-direction: column; gap: 15px; }
  .astro-sidebar { position: static; }
}

.astro-main .latest-news-title { text-align: center; margin-top: -12px; }
.astro-grid { margin-bottom: 0; }
