/* ============================================
   OVERLAY BASE - REDESIGNED
   ============================================ */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 99999999;
  display: none;
  flex-direction: column;
  background: var(--theme-bg, #0a0a0f);
  transition: background 0.5s ease;
  border-radius: 0;
  overflow: hidden;
  font-family: 'Play', sans-serif !important;
}

.overlay.show,
.overlay.active {
  display: flex;
}

/* Animated mesh gradient background */
.overlay::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(120, 50, 180, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(40, 100, 180, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 70% 80%, rgba(180, 50, 120, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 70% at 10% 70%, rgba(50, 150, 150, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
  animation: meshFloat 20s ease-in-out infinite;
}

@keyframes meshFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(2%, 1%) rotate(1deg);
  }
  50% {
    transform: translate(-1%, 2%) rotate(-1deg);
  }
  75% {
    transform: translate(1%, -1%) rotate(0.5deg);
  }
}

/* Subtle grid pattern */
.overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Additional glow layer */
.overlay-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 3;
  pointer-events: none;
}

/* ============================================
   HEADER
   ============================================ */
.overlay-header {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.slides-bar {
  display: flex;
  gap: 0.5rem;
}

.slide-bar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.slide-bar:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.slide-bar.active {
  color: var(--theme-accent, #fff);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--theme-accent, rgba(255, 255, 255, 0.2));
  box-shadow: 0 0 20px rgba(var(--theme-accent-rgb, 255, 255, 255), 0.2);
}

.slide-bar.visited {
  color: rgba(255, 255, 255, 0.55);
}

.header-controls {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.close-btn:hover {
  background: rgba(255, 80, 80, 0.15);
  border-color: rgba(255, 80, 80, 0.3);
  color: #ff6b6b;
  transform: rotate(90deg);
}

/* ============================================
   VOLUME CONTROL
   ============================================ */
.volume-control {
  position: relative;
  display: flex;
  align-items: center;
}

.volume-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.volume-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.volume-btn.muted {
  color: rgba(255, 255, 255, 0.3);
}

.volume-panel {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 20, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px 0 0 12px;
  padding: 0 16px 0 12px;
  height: 40px;
  display: flex;
  align-items: center;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(20px);
}

.volume-control:hover .volume-panel,
.volume-panel:hover {
  opacity: 1;
  width: 120px;
  pointer-events: auto;
}

.volume-control:hover .volume-btn {
  border-radius: 0 12px 12px 0;
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: var(--theme-accent, #fff);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 10px var(--theme-glow, rgba(255, 255, 255, 0.3));
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px var(--theme-glow, rgba(255, 255, 255, 0.5));
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--theme-accent, #fff);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* ============================================
   3D LOGO IN HEADER
   ============================================ */
.logo-3d-container {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  cursor: pointer;
}

.logo-3d-container canvas {
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 768px) {
  .logo-3d-container {
    left: 0.75rem;
    width: 50px;
    height: 50px;
  }
}

/* ============================================
   SLIDES
   ============================================ */
.overlay-body {
  flex: 1;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   SUBSLIDES
   ============================================ */
.subslides {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subslide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.subslide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.subslide.exit-left {
  opacity: 0;
  transform: translateX(-30px);
}

.subslide.exit-right {
  opacity: 0;
  transform: translateX(30px);
}

/* Subslide dots */
.subslide-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.subslide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.subslide-dot.active {
  background: var(--theme-accent, #fff);
  transform: scale(1.3);
  box-shadow: 0 0 15px var(--theme-glow, rgba(255, 255, 255, 0.5));
}

.subslide-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

/* ============================================
   SLIDE ANIMATIONS
   ============================================ */
.slide.animating-in {
  animation: slideFadeIn 0.5s ease forwards;
}

.slide.animating-out {
  animation: slideFadeOut 0.3s ease forwards;
}

@keyframes slideFadeIn {
  from { opacity: 0; }
  to { opacity: 1; visibility: visible; }
}

@keyframes slideFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Content animation */
.slide-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--theme-accent);
  padding: 2rem;
  max-width: 800px;
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.subslide.active .slide-content {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.subslide.active .slide-label { animation: fadeSlideUp 0.5s ease 0.2s both; }
.subslide.active .slide-title { animation: fadeSlideUp 0.6s ease 0.3s both; }
.subslide.active .slide-text,
.subslide.active .slide-subtitle { animation: fadeSlideUp 0.5s ease 0.4s both; }
.subslide.active .slide-badge,
.subslide.active .slide-btn,
.subslide.active .stats-grid,
.subslide.active .servers-list,
.subslide.active .game-stats-grid,
.subslide.active .framePreview,
.subslide.active .start-btn-3d { animation: fadeSlideUp 0.5s ease 0.5s both; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   COLOR THEMES - REFINED
   ============================================ */
.slide[data-theme="purple"] { 
  --theme-bg: #0a0510; 
  --theme-accent: #b47aff; 
  --theme-glow: rgba(180, 122, 255, 0.5);
  --theme-accent-rgb: 180, 122, 255;
}
.slide[data-theme="teal"] { 
  --theme-bg: #050f0d; 
  --theme-accent: #2dd4bf; 
  --theme-glow: rgba(45, 212, 191, 0.5);
  --theme-accent-rgb: 45, 212, 191;
}
.slide[data-theme="pink"] { 
  --theme-bg: #100510; 
  --theme-accent: #f472b6; 
  --theme-glow: rgba(244, 114, 182, 0.5);
  --theme-accent-rgb: 244, 114, 182;
}
.slide[data-theme="gold"] { 
  --theme-bg: #0f0d05; 
  --theme-accent: #fbbf24; 
  --theme-glow: rgba(251, 191, 36, 0.5);
  --theme-accent-rgb: 251, 191, 36;
}
.slide[data-theme="blue"] { 
  --theme-bg: #050810; 
  --theme-accent: #60a5fa; 
  --theme-glow: rgba(96, 165, 250, 0.5);
  --theme-accent-rgb: 96, 165, 250;
}
.slide[data-theme="green"] { 
  --theme-bg: #050f08; 
  --theme-accent: #4ade80; 
  --theme-glow: rgba(74, 222, 128, 0.5);
  --theme-accent-rgb: 74, 222, 128;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.slide-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.7;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

.slide-title {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  font-family: 'Courier New', 'Monaco', monospace;
  letter-spacing: -0.02em;
  text-shadow: 
    0 0 60px var(--theme-glow),
    0 0 120px var(--theme-glow);
  margin: 0;
  line-height: 1;
  background: linear-gradient(180deg, var(--theme-accent) 0%, color-mix(in srgb, var(--theme-accent) 70%, white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-title.small {
  font-size: clamp(2.5rem, 8vw, 5rem);
}

.slide-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.slide-text {
  font-size: 1.25rem;
  margin-top: 1rem;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.slide-badge {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(var(--theme-accent-rgb, 255, 255, 255), 0.3);
  border-radius: 50px;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
}

.slide-badge span {
  background: var(--theme-accent);
  color: var(--theme-bg);
  padding: 0.15em 0.5em;
  border-radius: 4px;
  font-weight: 700;
}

/* Year comparison badge */
.year-compare {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.year-compare i {
  font-size: 1.25rem;
}

.year-compare--up {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.year-compare--down {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.year-compare--down i {
  color: #f87171 !important; 
}

.year-compare--neutral {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.year-compare--small {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

.year-compare--small i {
  font-size: 1rem;
}

/* ============================================
   GLASS CARD COMPONENTS
   ============================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FORUM STATS GRID
   ============================================ */
.forum-stats-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.forum-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  min-width: 140px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.forum-stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--theme-accent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(var(--theme-accent-rgb, 255, 255, 255), 0.1);
}

.forum-stat-item__value {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: var(--theme-accent);
  text-shadow: 0 0 30px var(--theme-glow);
}

.forum-stat-item__label {
  font-size: 0.875rem;
  opacity: 0.6;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .forum-stats-grid {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  
  .forum-stat-item {
    padding: 1rem;
    min-width: 100px;
  }
  
  .forum-stat-item__value { font-size: 1.75rem; }
  .forum-stat-item__label { font-size: 0.7rem; }
  .year-compare--small { 
    padding: 0.2rem 0.5rem; 
    font-size: 0.65rem;
    margin-top: 0.5rem;
  }
  .year-compare--small i { font-size: 0.8rem; }
  
  .forum-extended-content { max-width: 100%; }
  
  .top-users-section { 
    margin-top: 1.5rem; 
    padding-top: 1rem; 
  }
  
  .top-users-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    max-width: 100%;
  }
  
  .top-user-item {
    padding: 0.4rem;
    gap: 0.3rem;
  }
  
  .top-user-item__rank { font-size: 0.65rem; min-width: 16px; }
  .top-user-item img { width: 24px; height: 24px; }
  .top-user-item__name { font-size: 0.65rem; }
}

@media (max-width: 480px) {
  .forum-stats-grid {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .forum-stat-item {
    width: 100%;
    max-width: 200px;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.75rem 1rem;
  }
  
  .forum-stat-item__value { font-size: 1.5rem; }
}

/* ============================================
   MODERATION GRID
   ============================================ */
.moderation-content {
  max-width: 750px;
}

.moderation-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.moderation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1 1 calc(33.333% - 0.67rem);
  min-width: calc(33.333% - 0.67rem);
  max-width: 100%;
  backdrop-filter: blur(10px);
}

.moderation-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--theme-accent);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.moderation-item i {
  font-size: 1.5rem;
  opacity: 0.8;
  color: var(--theme-accent);
}

.moderation-item__value {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: var(--theme-accent);
}

.moderation-item__label {
  font-size: 0.75rem;
  opacity: 0.6;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .moderation-content { max-width: 100%; }
  
  .moderation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .moderation-item {
    padding: 1rem 0.75rem;
  }
  
  .moderation-item i { font-size: 1.25rem; }
  .moderation-item__value { font-size: 1.4rem; }
  .moderation-item__label { font-size: 0.65rem; }
}

@media (max-width: 480px) {
  .moderation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .moderation-item {
    padding: 0.75rem 0.5rem;
  }
  
  .moderation-item i { font-size: 1rem; }
  .moderation-item__value { font-size: 1.2rem; }
  .moderation-item__label { font-size: 0.6rem; }
  .year-compare--small { 
    padding: 0.15rem 0.4rem;
    font-size: 0.55rem;
  }
}

/* ============================================
   GIFTS STATS
   ============================================ */
.gifts-content {
  max-width: 600px;
}

.gifts-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.gifts-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.gifts-stats__item i {
  font-size: 2rem;
  opacity: 0.7;
  color: var(--theme-accent);
}

.gifts-stats__value {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: var(--theme-accent);
  text-shadow: 0 0 40px var(--theme-glow);
}

.gifts-stats__label {
  font-size: 0.875rem;
  opacity: 0.6;
  color: rgba(255, 255, 255, 0.8);
}

.gifts-top {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gifts-top__column {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.gifts-top__title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.gifts-top__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gifts-top__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.gifts-top__user:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
}

.gifts-top__user img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.gifts-top__name {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.gifts-top__count {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--theme-accent);
}

@media (max-width: 768px) {
  .gifts-content { max-width: 100%; }
  
  .gifts-stats {
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .gifts-stats__item i { font-size: 1.5rem; }
  .gifts-stats__value { font-size: 2rem; }
  .gifts-stats__label { font-size: 0.75rem; }
  
  .gifts-top {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .gifts-top__column {
    min-width: auto;
    max-width: 280px;
    width: 100%;
  }
  
  .gifts-top__user {
    padding: 0.5rem 0.75rem;
  }
  
  .gifts-top__user img { width: 28px; height: 28px; }
  .gifts-top__name { font-size: 0.8rem; }
  .gifts-top__count { font-size: 0.8rem; }
}

/* ============================================
   TOP USERS GRID
   ============================================ */
.forum-extended-content {
  max-width: 700px;
}

.top-users-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.top-users-section__title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.5;
  margin-bottom: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.top-users-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.top-user-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.top-user-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(3px);
}

.top-user-item__rank {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.4;
  min-width: 20px;
}

.top-user-item:nth-child(1) .top-user-item__rank { color: #fbbf24; opacity: 1; }
.top-user-item:nth-child(2) .top-user-item__rank { color: #9ca3af; opacity: 1; }
.top-user-item:nth-child(3) .top-user-item__rank { color: #d97706; opacity: 1; }

.top-user-item img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.top-user-item__name {
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
  .top-users-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   GLOBAL CHAT STATS
   ============================================ */
.chat-global-content {
  max-width: 700px;
}

.chat-global-content .slide-title {
  font-size: clamp(3rem, 10vw, 6rem);
  margin-bottom: 0;
}

.chat-global-content .slide-text {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.chat-stats-row {
  margin-bottom: 1.5rem;
}

.chat-stickers__title,
.chat-top-users__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.5;
  margin-bottom: 0.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.chat-stickers__list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.chat-stickers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.chat-stickers__item:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--theme-accent);
}

.chat-stickers__item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.chat-stickers__item span {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.9);
}

.chat-top-users {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-top-users__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.chat-top-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.chat-top-user:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.chat-top-user__rank {
  font-size: 0.65rem;
  font-weight: 700;
  opacity: 0.4;
}

.chat-top-user:nth-child(1) .chat-top-user__rank { color: #fbbf24; opacity: 1; }
.chat-top-user:nth-child(2) .chat-top-user__rank { color: #9ca3af; opacity: 1; }
.chat-top-user:nth-child(3) .chat-top-user__rank { color: #d97706; opacity: 1; }

.chat-top-user img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.chat-top-user__name {
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
  .chat-top-users__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.3rem;
  }
  
  .chat-top-user {
    padding: 0.4rem 0.25rem;
  }
  
  .chat-top-user img {
    width: 28px;
    height: 28px;
  }
  
  .chat-top-user__name {
    font-size: 0.6rem;
  }
  
  .chat-top-user__rank {
    font-size: 0.55rem;
  }
  
  .chat-stickers__item {
    padding: 0.5rem;
  }
  
  .chat-stickers__item img {
    width: 36px;
    height: 36px;
  }
  
  .chat-stickers__item span {
    font-size: 0.65rem;
  }
  
  .chat-stickers__list {
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .chat-global-content { max-width: 100%; }
  
  .chat-global-content .slide-title {
    font-size: clamp(2rem, 12vw, 4rem);
  }
  
  .chat-top-users__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.4rem;
    max-width: 100%;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.slide-btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid var(--theme-accent);
  color: var(--theme-accent);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.slide-btn:hover {
  background: var(--theme-accent);
  color: var(--theme-bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(var(--theme-accent-rgb, 255, 255, 255), 0.3);
}

.slide-btn.primary {
  background: var(--theme-accent);
  color: var(--theme-bg);
}

.slide-btn.primary:hover {
  filter: brightness(1.15);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 40px rgba(var(--theme-accent-rgb, 255, 255, 255), 0.4);
}

.start-btn-3d {
  padding: 1.25rem 3.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--theme-bg);
  background: linear-gradient(180deg, var(--theme-accent) 0%, color-mix(in srgb, var(--theme-accent) 80%, black) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 
    0 6px 0 color-mix(in srgb, var(--theme-accent) 50%, black),
    0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.15s ease;
  position: relative;
  overflow: hidden;
}

.start-btn-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.start-btn-3d:hover::before {
  left: 100%;
}

.start-btn-3d:hover {
  filter: brightness(1.1);
}

.start-btn-3d:active {
  transform: translateY(4px);
  box-shadow: 
    0 2px 0 color-mix(in srgb, var(--theme-accent) 50%, black),
    0 5px 15px rgba(0, 0, 0, 0.3);
}

.start-btn-3d i {
  margin-right: 0.75rem;
  font-size: 1.5rem;
}

/* ============================================
   STATS COMPONENTS
   ============================================ */
.stats-grid {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item { 
  text-align: center; 
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: var(--theme-accent);
  text-shadow: 0 0 30px var(--theme-glow);
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  opacity: 0.6;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Servers */
.servers-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.server-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.server-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--theme-accent);
  transform: translateX(5px);
}

.server-rank {
  font-weight: 700;
  font-size: 1.25rem;
  opacity: 0.5;
  width: 2.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.server-name {
  flex: 1;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.server-hours {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  opacity: 0.8;
  color: var(--theme-accent);
}

@media (max-width: 768px) {
  .servers-list {
    max-width: 320px;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  
  .server-item {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  
  .server-rank { font-size: 1rem; width: 2rem; }
  .server-name { font-size: 0.9rem; }
  .server-hours { font-size: 0.85rem; }
}

/* ============================================
   AIMING SLIDE
   ============================================ */
.aiming-slide {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
}

/* Side panels */
.aiming-side {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.aiming-side__content {
  padding: 3rem;
  max-width: 800px;
  z-index: 2;
}

.aiming-best {
  justify-content: flex-start;
}

.aiming-worst {
  justify-content: flex-end;
}

.aiming-worst .aiming-side__content {
  text-align: right;
}

.aiming-side__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.aiming-side__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.aiming-best .aiming-side__title {
  color: var(--theme-accent, #2dd4bf);
  text-shadow: 0 0 40px var(--theme-glow, rgba(45, 212, 191, 0.5));
}

.aiming-worst .aiming-side__title {
  color: #f87171;
  text-shadow: 0 0 40px rgba(248, 113, 113, 0.5);
}

.aiming-side__subtitle {
  font-size: 0.9rem;
  opacity: 0.5;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

/* Center block */
.aiming-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 400px;
}

.aiming-center__box {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.aiming-center__title {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--theme-accent, #2dd4bf);
  color: #fff;
}

.aiming-center__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 420px;
  overflow-y: scroll;
  padding-right: 20px;
}

.aiming-center__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(45, 212, 191, 0.08);
}

.aiming-center__item:last-child {
  border-bottom: none;
}

.aiming-center__rank {
  font-size: 1rem;
  font-weight: 700;
  color: var(--theme-accent, #2dd4bf);
  width: 2rem;
}

.aiming-center__name {
  flex: 1;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.aiming-center__hs {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: var(--theme-accent, #2dd4bf);
  min-width: 50px;
  text-align: right;
}

.aiming-center__note {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(45, 212, 191, 0.1);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-style: italic;
}

/* Aiming animations */
.subslide.active .aiming-slide {
  animation: fadeIn 0.5s ease both;
}

.subslide.active .aiming-center {
  animation: aimingCenterIn 0.5s ease 0.2s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes aimingCenterIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Aiming responsive */
@media (max-width: 1024px) {
  .aiming-side__content {
    padding: 2rem;
  }
  
  .aiming-center {
    width: 280px;
  }
  
  .aiming-center__title {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .aiming-slide {
    flex-direction: column;
  }
  
  .aiming-side {
    flex: none;
    height: auto;
    min-height: 25%;
    justify-content: center !important;
    padding: 1rem 0;
  }
  
  .aiming-side__content {
    text-align: center !important;
    padding: 1rem;
    max-width: 100%;
  }
  
  .aiming-side__title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }
  
  .aiming-side__subtitle {
    font-size: 0.8rem;
  }
  
  .aiming-center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 90%;
    max-width: 400px;
    margin: 0.5rem auto;
  }
  
  .aiming-center__box {
    padding: 1rem;
  }
  
  .aiming-center__title {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  .aiming-center__item {
    padding: 0.4rem 0;
  }
  
  .aiming-center__rank,
  .aiming-center__name {
    font-size: 0.85rem;
  }
  
  .aiming-center__hs {
    font-size: 0.75rem;
    min-width: 40px;
  }
  
  .aiming-center__note {
    font-size: 0.6rem;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
  }
}

/* ============================================
   FRAME PREVIEW
   ============================================ */
.framePreview {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 2rem auto;
}

.framePreview__avatar {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.framePreview__decoration {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .framePreview {
    width: 140px;
    height: 140px;
    margin: 1.5rem auto;
  }
  
  .framePreview__avatar {
    width: 98px;
    height: 98px;
  }
}

/* ============================================
   EMOJI STATS
   ============================================ */
.emoji-stats {
  margin-top: 2rem;
}

.emoji-stats__label {
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.emoji-stats__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.emoji-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  min-width: 70px;
  transition: all 0.3s ease;
}

.emoji-stats__item:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--theme-accent);
}

.emoji-stats__emoji {
  font-size: 2rem;
}

.emoji-stats__emoji img {
  width: 64px;
  height: 64px;
}

.emoji-stats__count {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .emoji-stats { margin-top: 1.5rem; }
  .emoji-stats__list { gap: 0.5rem; }
  .emoji-stats__item { 
    padding: 0.75rem 0.5rem; 
    min-width: 55px;
  }
  .emoji-stats__emoji { font-size: 1.5rem; }
  .emoji-stats__count { font-size: 0.75rem; }
}

/* ============================================
   FRIENDS FLOATING & TOP 3
   ============================================ */
.friends-content {
  max-width: 100%;
  position: relative;
}

/* Floating avatars */
.friends-floating {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.friends-floating__avatar {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 50px;
  height: 50px;
  opacity: 0;
  animation: 
    floatAppear 0.5s ease calc(var(--delay)) forwards,
    floatMove 4s ease-in-out calc(var(--delay) + 0.5s) infinite,
    floatDisappear 0.8s ease 3s forwards;
}

.friends-floating__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

@keyframes floatAppear {
  from {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  to {
    opacity: 0.8;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes floatMove {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -30px) rotate(10deg);
  }
  50% {
    transform: translate(-15px, -20px) rotate(-5deg);
  }
  75% {
    transform: translate(25px, 10px) rotate(8deg);
  }
}

@keyframes floatDisappear {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0) translateY(-100px);
  }
}

@media (max-width: 768px) {
  .friends-floating__avatar:nth-child(n+11) {
    display: none;
  }
  
  .friends-floating__avatar {
    width: 40px;
    height: 40px;
  }
}

.friends-floating.hidden {
  display: none;
}

/* Top 3 friends */
.friends-top3 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  margin: 2rem auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.friends-top3.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.friends-top3__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.friends-top3__item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  transition: all 0.3s ease;
}

.friends-top3__item--main img {
  width: 100px;
  height: 100px;
  border-color: var(--theme-accent);
  box-shadow: 0 0 40px var(--theme-glow);
}

.friends-top3__name {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

.friends-top3__item--main .friends-top3__name {
  color: var(--theme-accent);
  font-size: 1rem;
}

.friends-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.friends-text.visible {
  opacity: 0.85;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .friends-floating__avatar {
    width: 35px;
    height: 35px;
  }
  
  .friends-top3 {
    gap: 1rem;
    margin: 1.5rem auto;
  }
  
  .friends-top3__item img {
    width: 60px;
    height: 60px;
  }
  
  .friends-top3__item--main img {
    width: 75px;
    height: 75px;
  }
  
  .friends-top3__name {
    font-size: 0.75rem;
  }
  
  .friends-top3__item--main .friends-top3__name {
    font-size: 0.85rem;
  }
}

/* ============================================
   CASES LIST
   ============================================ */
.cases-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.case-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.case-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--theme-accent);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.case-item__icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.case-item__icon img {
  width: 50px;
  height: 50px;
}

.case-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.case-item__name {
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.case-item__opens {
  font-size: 0.8rem;
  opacity: 0.5;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .cases-list {
    margin-top: 1.5rem;
    gap: 0.5rem;
    max-width: 320px;
  }
  
  .case-item {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  
  .case-item__icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
  
  .case-item__name { font-size: 0.9rem; }
  .case-item__opens { font-size: 0.7rem; }
}

/* ============================================
   WINNINGS GRID
   ============================================ */
.winnings-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.winning-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  min-width: 200px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.winning-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.winning-item i {
  font-size: 2rem;
  opacity: 0.7;
  color: var(--theme-accent);
}

.winning-item__value {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: var(--theme-accent);
}

.winning-item__label {
  font-size: 0.8rem;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.winning-item--accent {
  background: rgba(var(--theme-accent-rgb, 244, 114, 182), 0.08);
  border-color: rgba(var(--theme-accent-rgb, 244, 114, 182), 0.2);
}

.winning-item--accent i {
  color: var(--theme-accent);
}

.winning-item--accent .winning-item__value {
  color: var(--theme-accent);
}

@media (max-width: 768px) {
  .winnings-grid {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  
  .winning-item {
    padding: 1rem 1.25rem;
    min-width: 90px;
  }
  
  .winning-item i { font-size: 1.5rem; }
  .winning-item__value { font-size: 1.5rem; }
  .winning-item__label { font-size: 0.65rem; }
}

/* ============================================
   NAV BUTTONS
   ============================================ */
.nav-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 180px;
  text-align: left;
  backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-btn.nav-next {
  align-items: flex-end;
  text-align: right;
}

.nav-btn-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

.nav-btn-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-accent, #fff);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: none;
}

/* ============================================
   3D MEAT74 CSS TEXT
   ============================================ */
.meat74-3d {
  perspective: 1000px;
  margin: 1.5rem 0;
}

.meat74-text {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

.meat74-layer {
  display: block;
  /* font-size: clamp(4rem, 14vw, 12rem); */
  font-size: 80px;
  font-weight: 400;
  font-family: 'Black Ops One', cursive;
  letter-spacing: 0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
}

/* Depth layers */
.meat74-layer:nth-child(1) { transform: translateZ(-30px); opacity: 0.15; }
.meat74-layer:nth-child(2) { transform: translateZ(-25px); opacity: 0.2; }
.meat74-layer:nth-child(3) { transform: translateZ(-20px); opacity: 0.3; }
.meat74-layer:nth-child(4) { transform: translateZ(-15px); opacity: 0.4; }
.meat74-layer:nth-child(5) { transform: translateZ(-10px); opacity: 0.5; }
.meat74-layer:nth-child(6) { transform: translateZ(-5px); opacity: 0.7; }

/* Front layer */
.meat74-front {
  position: relative;
  color: var(--theme-accent, #b47aff);
  -webkit-text-stroke: none;
  text-shadow: 
    0 0 40px var(--theme-glow, rgba(180, 122, 255, 0.5)),
    0 0 80px var(--theme-glow, rgba(180, 122, 255, 0.3));
  opacity: 1 !important;
  transform: translateZ(0) !important;
}

/* Depth layer colors */
.meat74-layer:not(.meat74-front) {
  color: var(--theme-accent, #b47aff);
  -webkit-text-stroke: none;
  filter: brightness(0.35);
}

.start-content {
  width: 100%;
  max-width: 900px;
}

/* ============================================
   SERVER SELECTOR
   ============================================ */
.server-selector {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.server-selector__btn {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.server-selector__btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
}

.server-selector__btn.active {
  background: var(--theme-accent);
  border-color: var(--theme-accent);
  color: var(--theme-bg);
  font-weight: 600;
  box-shadow: 0 0 20px rgba(var(--theme-accent-rgb, 255, 255, 255), 0.3);
}

@media (max-width: 768px) {
  .server-selector {
    gap: 0.35rem;
    margin-bottom: 1rem;
  }
  
  .server-selector__btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
  }
}

/* ============================================
   PERCENTILE DISPLAY
   ============================================ */
.percentile-display {
  margin-top: 1.5rem;
  display: none;
}

.percentile-bar {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin: 0 auto 1rem;
  overflow: visible;
}

.percentile-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(248, 113, 113, 0.8) 0%, 
    rgba(251, 191, 36, 0.8) 50%, 
    rgba(74, 222, 128, 0.8) 100%
  );
  border-radius: 4px;
  transition: width 1s ease-out;
}

.percentile-bar__marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--theme-accent);
  border: 3px solid var(--theme-bg);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--theme-glow);
  transition: left 1s ease-out;
}

.percentile-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.5rem;
}

.percentile-text strong {
  color: var(--theme-accent);
  font-weight: 700;
}

/* ============================================
   POSITION BADGE
   ============================================ */
.position-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.position-badge i {
  color: var(--theme-accent);
  font-size: 1.1rem;
}

.position-badge__rank {
  font-weight: 700;
  color: var(--theme-accent);
  font-family: 'Courier New', monospace;
}

.position-badge__total {
  opacity: 0.5;
  color: rgba(255, 255, 255, 0.7);
}

.position-badge--top10 {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(251, 191, 36, 0.04));
  border-color: rgba(251, 191, 36, 0.25);
}

.position-badge--top10 .position-badge__rank {
  color: #fbbf24;
}

.position-badge--top100 {
  background: linear-gradient(135deg, rgba(156, 163, 175, 0.12), rgba(156, 163, 175, 0.04));
  border-color: rgba(156, 163, 175, 0.25);
}

.position-badge--top100 .position-badge__rank {
  color: #9ca3af;
}

/* ============================================
   STAT DETAILS (for K/D)
   ============================================ */
.stat-details {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.stat-details__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  min-width: 100px;
  backdrop-filter: blur(10px);
}

.stat-details__value {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: var(--theme-accent);
}

.stat-details__label {
  font-size: 0.75rem;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.stat-details__item--kills .stat-details__value {
  color: #4ade80;
}

.stat-details__item--deaths .stat-details__value {
  color: #f87171;
}

@media (max-width: 768px) {
  .stat-details {
    gap: 1rem;
  }
  
  .stat-details__item {
    padding: 0.75rem 1rem;
    min-width: 80px;
  }
  
  .stat-details__value {
    font-size: 1.4rem;
  }
  
  .stat-details__label {
    font-size: 0.65rem;
  }
}

/* ============================================
   TIME PLAYED DISPLAY
   ============================================ */
.time-played {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.time-played__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.time-played__value {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: var(--theme-accent);
  line-height: 1;
  text-shadow: 0 0 30px var(--theme-glow);
}

.time-played__label {
  font-size: 0.75rem;
  opacity: 0.5;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.time-played__separator {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.2);
  align-self: flex-start;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .time-played__value {
    font-size: 2rem;
  }
  
  .time-played__separator {
    font-size: 1.5rem;
  }
}

/* ============================================
   GAME STATS SLIDE CONTENT
   ============================================ */
.game-stats-content {
  max-width: 600px;
}

.game-stats-content .slide-title {
  margin-bottom: 0.25rem;
}

/* Server data animations */
.server-data {
  transition: opacity 0.3s ease;
}

.server-data.loading {
  opacity: 0.3;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .overlay-header { 
    padding: 0.75rem 1rem; 
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  }
  .slide-bar { width: 32px; height: 32px; font-size: 0.8rem; border-radius: 10px; }
  .slides-bar { gap: 0.35rem; }
  .header-controls { right: 0.75rem; gap: 0.25rem; }
  .volume-btn, .close-btn { width: 32px; height: 32px; font-size: 1rem; border-radius: 10px; }
  .volume-control:hover .volume-panel { width: 80px; }
  .logo-3d-container { display: none; }
  
  .nav-buttons { padding: 1rem; }
  .nav-btn { 
    min-width: 120px; 
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
  }
  .nav-btn-title { font-size: 0.8rem; }
  .nav-btn-label { font-size: 0.6rem; }
  
  .slide-content { padding: 1rem; }
  .slide-title { font-size: clamp(2.5rem, 15vw, 5rem); }
  .slide-title.small { font-size: clamp(1.75rem, 10vw, 3rem); }
  .slide-subtitle { font-size: 1.25rem; }
  .slide-text { font-size: 1rem; }
  .slide-label { font-size: 0.7rem; letter-spacing: 0.15em; }
  
  .subslide-dots { bottom: 5rem; }
  
  /* Start button */
  .start-btn-3d__content {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    gap: 0.5rem;
  }
  .start-btn-3d__content i { font-size: 1.25rem; }
  
  /* MEAT74 3D */
  .meat74-layer {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }
}

@media (max-width: 480px) {
  .slide-bar { width: 28px; height: 28px; font-size: 0.7rem; }
  .slides-bar { gap: 0.25rem; }
  .volume-btn, .close-btn { width: 28px; height: 28px; }
  
  .nav-btn { 
    min-width: 100px;
    padding: 0.4rem 0.6rem;
  }
  .nav-btn-title { font-size: 0.7rem; }
  
  .slide-title { font-size: clamp(2rem, 18vw, 4rem); }
  .slide-badge { padding: 0.4rem 1rem; font-size: 0.85rem; }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}
