/* ==========================================================================
   iOS 26 LIQUID GLASS — Red Barracks Music Distribution
   Full design system with glass morphism, fluid animations, dynamic blur
   ==========================================================================
   Принципы iOS 26 Liquid Glass:
   - Многослойное стекло с saturate(180%) blur(28px+)
   - Живые градиентные подсветки от контента под стеклом
   - Fluid микро-анимации на каждом интерактивном элементе
   - Specular highlights — световые блики на стекле
   - Spring physics на hover/active состояниях
   ========================================================================== */

/* ============================================================
   LIQUID GLASS ПЕРЕМЕННЫЕ
   ============================================================ */
:root {
  /* iOS 26 Glass layers */
  --lg-glass-base:       rgba(10, 10, 10, 0.45);
  --lg-glass-mid:        rgba(20, 10, 15, 0.38);
  --lg-glass-light:      rgba(30, 10, 20, 0.28);
  --lg-glass-ultra:      rgba(8, 0, 8, 0.18);

  /* Red Barracks color variables for compatibility */
  --rb-crimson:          #dc143c;
  --rb-brick:            #8b3a2a;
  --rb-brick-light:      #a05245;
  --rb-ember:            #b22222;
  --rb-text:             #ffffff;
  --rb-muted:            rgba(255,255,255,0.65);
  --rb-surface:          rgba(255,255,255,0.05);

  /* Specular highlight */
  --lg-spec-top:         rgba(255, 255, 255, 0.12);
  --lg-spec-edge:        rgba(255, 255, 255, 0.06);
  --lg-spec-inner:       rgba(255, 255, 255, 0.04);

  /* Crimson glass tints */
  --lg-tint-primary:     rgba(220, 20, 60, 0.18);
  --lg-tint-glow:        rgba(220, 20, 60, 0.35);
  --lg-tint-ambient:     rgba(220, 20, 60, 0.08);
  --lg-tint-border:      rgba(220, 20, 60, 0.28);
  --lg-tint-border-mid:  rgba(220, 20, 60, 0.18);
  --lg-tint-border-soft: rgba(220, 20, 60, 0.10);

  /* Brick warm glass tints */
  --lg-brick-tint:       rgba(139, 58, 42, 0.14);
  --lg-brick-spec:       rgba(168, 78, 60, 0.10);

  /* Blur values */
  --lg-blur-sm:    blur(12px);
  --lg-blur-md:    blur(20px);
  --lg-blur-lg:    blur(28px);
  --lg-blur-xl:    blur(40px);
  --lg-blur-xxl:   blur(60px);

  /* Saturate + blur combo (iOS style) */
  --lg-filter-nav:    saturate(200%) brightness(1.05) blur(28px);
  --lg-filter-card:   saturate(180%) brightness(1.02) blur(20px);
  --lg-filter-modal:  saturate(220%) brightness(1.08) blur(40px);
  --lg-filter-sidebar:saturate(190%) brightness(1.03) blur(32px);

  /* Glass borders */
  --lg-border-top:   1px solid rgba(255, 255, 255, 0.14);
  --lg-border-side:  1px solid rgba(255, 255, 255, 0.08);
  --lg-border-glow:  1px solid var(--lg-tint-border);
  --lg-border-inner: inset 0 1px 0 rgba(255, 255, 255, 0.12);

  /* Shadows */
  --lg-shadow-float:  0 20px 60px rgba(0, 0, 0, 0.65),
                      0 8px 24px rgba(0, 0, 0, 0.45),
                      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --lg-shadow-card:   0 12px 40px rgba(0, 0, 0, 0.55),
                      0 4px 16px rgba(220, 20, 60, 0.08),
                      inset 0 1px 0 rgba(255, 255, 255, 0.10);
  --lg-shadow-glow:   0 0 40px rgba(220, 20, 60, 0.25),
                      0 0 80px rgba(220, 20, 60, 0.12);
  --lg-shadow-nav:    0 2px 40px rgba(0, 0, 0, 0.60),
                      0 1px 0 rgba(255, 255, 255, 0.06),
                      inset 0 -1px 0 rgba(220, 20, 60, 0.15);

  /* Animation easings — iOS spring */
  --lg-spring:         cubic-bezier(0.34, 1.56, 0.64, 1);
  --lg-spring-soft:    cubic-bezier(0.25, 0.8, 0.25, 1);
  --lg-spring-bounce:  cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --lg-ease-glass:     cubic-bezier(0.4, 0, 0.2, 1);

  /* Radii */
  --lg-radius-xs:   8px;
  --lg-radius-sm:   12px;
  --lg-radius-md:   18px;
  --lg-radius-lg:   24px;
  --lg-radius-xl:   32px;
  --lg-radius-pill: 999px;
}


/* ============================================================
   GLOBAL BACKGROUND — Живой фон с движущимися орбами
   ============================================================ */

html {
  background: #060408;
}

body {
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               Inter, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animated background canvas */
.lg-bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 80% at 50% 100%, #0d0008 0%, #060408 60%);
}

/* Orb 1 — large crimson */
.lg-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  animation: lgOrbDrift var(--dur, 20s) var(--ease, ease-in-out) infinite alternate;
  will-change: transform;
}

.lg-bg-orb--1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at 40% 40%,
    rgba(220, 20, 60, 0.22) 0%,
    rgba(160, 14, 44, 0.12) 40%,
    transparent 70%);
  top: -15%;
  left: -10%;
  --dur: 22s;
  --ease: cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.lg-bg-orb--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 60% 40%,
    rgba(139, 58, 42, 0.18) 0%,
    rgba(92, 36, 24, 0.10) 50%,
    transparent 70%);
  top: 20%;
  right: -8%;
  --dur: 28s;
  --ease: cubic-bezier(0.55, 0.05, 0.45, 0.95);
  animation-direction: alternate-reverse;
}

.lg-bg-orb--3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 50% 50%,
    rgba(220, 20, 60, 0.14) 0%,
    rgba(80, 0, 20, 0.08) 50%,
    transparent 70%);
  bottom: -10%;
  left: 25%;
  --dur: 18s;
  --ease: ease-in-out;
}

.lg-bg-orb--4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 50% 50%,
    rgba(232, 69, 60, 0.12) 0%,
    transparent 70%);
  bottom: 30%;
  right: 15%;
  --dur: 32s;
  animation-direction: alternate-reverse;
}

/* Noise texture overlay */
.lg-bg-canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}

@keyframes lgOrbDrift {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
  25%  { transform: translate(60px, -40px) scale(1.08) rotate(5deg); }
  50%  { transform: translate(-30px, 50px) scale(0.94) rotate(-3deg); }
  75%  { transform: translate(80px, 20px) scale(1.05) rotate(8deg); }
  100% { transform: translate(-40px, -60px) scale(1.02) rotate(-6deg); }
}


/* ============================================================
   LIQUID GLASS CARD — базовый компонент стекла
   ============================================================ */

.lg-card {
  position: relative;
  background: var(--lg-glass-base);
  -webkit-backdrop-filter: var(--lg-filter-card);
  backdrop-filter: var(--lg-filter-card);
  border-radius: var(--lg-radius-md);
  border: var(--lg-border-top);
  border-bottom-color: rgba(255, 255, 255, 0.04);
  box-shadow: var(--lg-shadow-card);
  overflow: hidden;
  transition:
    transform 0.4s var(--lg-spring-soft),
    box-shadow 0.4s var(--lg-ease-glass),
    border-color 0.3s ease;
  will-change: transform;
}

/* Specular highlight on top edge */
.lg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 30%,
    rgba(255, 255, 255, 0.30) 50%,
    rgba(255, 255, 255, 0.22) 70%,
    transparent 100%);
  z-index: 1;
}

/* Inner ambient glow */
.lg-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(220, 20, 60, 0.06) 0%,
    transparent 50%,
    rgba(139, 58, 42, 0.04) 100%);
  pointer-events: none;
  z-index: 0;
}

.lg-card:hover {
  transform: translateY(-3px) scale(1.005);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.65),
    0 8px 24px rgba(220, 20, 60, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.20);
}

.lg-card:active {
  transform: translateY(-1px) scale(0.998);
  transition-duration: 0.12s;
}

/* Card content sits above pseudo-elements */
.lg-card > * {
  position: relative;
  z-index: 2;
}

/* Variants */
.lg-card--primary {
  background: rgba(220, 20, 60, 0.18);
  border-color: rgba(220, 20, 60, 0.35);
}

.lg-card--dark {
  background: rgba(6, 2, 8, 0.55);
  border-color: rgba(255, 255, 255, 0.06);
}

.lg-card--float {
  box-shadow: var(--lg-shadow-float);
}


/* ============================================================
   LIQUID GLASS HEADER — iOS 26 navigation bar
   ============================================================ */

.lg-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 2000 !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 20px !important;

  /* Multi-layer glass */
  background: linear-gradient(
    180deg,
    rgba(12, 4, 10, 0.85) 0%,
    rgba(8, 2, 8, 0.80) 100%
  ) !important;
  -webkit-backdrop-filter: var(--lg-filter-nav) !important;
  backdrop-filter: var(--lg-filter-nav) !important;

  /* Top specular edge */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: var(--lg-shadow-nav) !important;

  /* Smooth appearance */
  transition: background 0.3s ease, box-shadow 0.3s ease !important;
}

.lg-header__inner {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  height: 100% !important;
  gap: 16px !important;
}

.lg-header__nav {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  flex: 1 !important;
  min-width: 0 !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.lg-header__nav::-webkit-scrollbar {
  display: none !important;
}

.lg-header__actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-left: auto !important;
  flex-shrink: 0 !important;
}

/* Thin crimson accent line below header */
.lg-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(220, 20, 60, 0.55) 30%,
    rgba(232, 69, 60, 0.70) 50%,
    rgba(220, 20, 60, 0.55) 70%,
    transparent);
  animation: lgHeaderLine 4s ease-in-out infinite alternate;
}

@keyframes lgHeaderLine {
  0%   { opacity: 0.5; left: 15%; right: 15%; }
  100% { opacity: 0.9; left: 5%; right: 5%; }
}

/* Scrolled state */
.lg-header.is-scrolled {
  background: linear-gradient(
    180deg,
    rgba(6, 0, 6, 0.88) 0%,
    rgba(6, 0, 6, 0.82) 100%
  );
  box-shadow:
    0 4px 50px rgba(0, 0, 0, 0.75),
    0 1px 0 rgba(255, 255, 255, 0.06);
}


/* ============================================================
   HEADER — LOGO
   ============================================================ */

.lg-header__logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  margin-right: 24px !important;
}

.lg-header__logo-mark {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 60%, #3d0010 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 16px rgba(220, 20, 60, 0.45) !important;
  transition: all 0.3s ease !important;
}

.lg-header__logo-mark i {
  color: #fff !important;
  font-size: 18px !important;
}

.lg-header__logo:hover .lg-header__logo-mark {
  transform: scale(1.08) rotate(-2deg) !important;
  box-shadow: 0 6px 24px rgba(220, 20, 60, 0.6) !important;
}

.lg-header__logo-text {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.3px !important;
  line-height: 1 !important;
}

.lg-header__logo-sub {
  display: block !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-top: 1px !important;
}

.lg-header__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 60%, #3d0010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 16px rgba(220, 20, 60, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 -1px 0 rgba(0, 0, 0, 0.30);
  transition: transform 0.3s var(--lg-spring), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lg-header__logo-mark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: lgLogoShine 5s ease-in-out infinite;
}

@keyframes lgLogoShine {
  0%, 70%  { left: -60%; opacity: 0; }
  75%      { opacity: 1; }
  100%     { left: 160%; opacity: 0; }
}

.lg-header__logo:hover .lg-header__logo-mark {
  transform: scale(1.08) rotate(-2deg);
  box-shadow:
    0 6px 24px rgba(220, 20, 60, 0.60),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lg-header__logo-text {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1;
}

.lg-header__logo-sub {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 1px;
}


/* ============================================================
   HEADER — NAV ITEMS
   ============================================================ */

.lg-header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.lg-nav-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 7px 12px !important;
  border-radius: var(--lg-radius-sm) !important;
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: -0.1px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  white-space: nowrap !important;
}

.lg-nav-item i {
  font-size: 13px !important;
  opacity: 0.75 !important;
  transition: all 0.3s ease !important;
}

.lg-nav-item:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

.lg-nav-item:hover i {
  opacity: 1 !important;
  color: #dc143c !important;
  transform: scale(1.15) !important;
}

.lg-nav-item:active {
  transform: translateY(0) scale(0.96) !important;
  background: rgba(220, 20, 60, 0.12) !important;
}

.lg-nav-item.is-active {
  background: rgba(220, 20, 60, 0.18) !important;
  color: #ff4060 !important;
  border: 1px solid rgba(220, 20, 60, 0.25) !important;
}

.lg-nav-item.is-active i {
  opacity: 1 !important;
  color: #dc143c !important;
}

/* Indicator dot for active */
.lg-nav-item.is-active::after {
  content: '' !important;
  position: absolute !important;
  bottom: 2px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  background: #dc143c !important;
  box-shadow: 0 0 6px rgba(220, 20, 60, 0.8);
}


/* ============================================================
   HEADER — ACTION BUTTONS
   ============================================================ */

/* Icon button (bell, cart) */
.lg-icon-btn {
  position: relative !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  text-decoration: none !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

.lg-icon-btn:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  transform: scale(1.1) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
}

.lg-icon-btn:active {
  transform: scale(0.92) !important;
}

.lg-icon-btn__badge {
  position: absolute !important;
  top: -4px !important;
  right: -4px !important;
  min-width: 18px !important;
  height: 18px !important;
  padding: 0 5px !important;
  border-radius: 9px !important;
  background: linear-gradient(135deg, #dc143c, #a00e2c) !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid rgba(6, 0, 8, 0.9) !important;
  box-shadow: 0 2px 8px rgba(220, 20, 60, 0.55) !important;
}

/* Profile button */
.lg-profile-btn {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 14px 6px 8px !important;
  border-radius: var(--lg-radius-pill) !important;
  background: rgba(220, 20, 60, 0.25) !important;
  border: 1px solid rgba(220, 20, 60, 0.4) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.lg-profile-btn:hover {
  background: rgba(220, 20, 60, 0.35) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(220, 20, 60, 0.4) !important;
  color: #fff !important;
}

/* Auth buttons */
.lg-btn--glass {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 7px 16px !important;
  border-radius: var(--lg-radius-sm) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.lg-btn--glass:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.lg-btn--primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 7px 18px !important;
  border-radius: var(--lg-radius-sm) !important;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.9) 0%, rgba(139, 58, 42, 0.9) 100%) !important;
  border: 1px solid rgba(220, 20, 60, 0.5) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(220, 20, 60, 0.35) !important;
}

.lg-btn--primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(220, 20, 60, 0.5) !important;
  color: #fff !important;
}

/* Burger button */
.vk-header__burger {
  display: flex !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 8px !important;
  border: none !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 18px !important;
  cursor: pointer !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.25s ease !important;
  flex-shrink: 0 !important;
  margin-left: auto !important;
}

.vk-header__burger:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
}

.vk-header__burger.is-active {
  background: rgba(220, 20, 60, 0.2) !important;
  color: #dc143c !important;
}

/* Mobile overlay */
.vk-header__overlay {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 2999 !important;
  background: rgba(0, 0, 0, 0.5) !important;
  opacity: 0 !important;
  transition: opacity 0.25s ease !important;
  pointer-events: none !important;
}

.vk-header__overlay.is-open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Mobile drawer */
.vk-header__mobile {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 3000 !important;
  width: 300px !important;
  max-width: 85vw !important;
  background: linear-gradient(180deg, rgba(12, 4, 10, 0.95) 0%, rgba(8, 2, 8, 0.92) 100%) !important;
  -webkit-backdrop-filter: saturate(200%) blur(40px) !important;
  backdrop-filter: saturate(200%) blur(40px) !important;
  transform: translateX(100%) !important;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.vk-header__mobile.is-open {
  transform: translateX(0) !important;
}

.vk-header__mobile-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: sticky !important;
  top: 0 !important;
  background: rgba(12, 4, 10, 0.8) !important;
}

.vk-header__mobile-title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #fff !important;
}

.vk-header__mobile-close {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 16px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.vk-header__mobile-close:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
}

.vk-header__mobile-nav {
  display: flex !important;
  flex-direction: column !important;
  padding: 8px !important;
}

.vk-header__mobile-nav a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 13px 16px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
}

.vk-header__mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

.vk-header__mobile-nav a i {
  width: 24px !important;
  text-align: center !important;
  color: rgba(220, 20, 60, 0.8) !important;
  font-size: 16px !important;
}

.vk-header__mobile-actions {
  display: flex !important;
  flex-direction: column !important;
  padding: 8px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.vk-header__mobile-actions a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 13px 16px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

.vk-header__mobile-actions a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

.vk-header__mobile-login,
.vk-header__mobile-register {
  justify-content: center !important;
  padding: 14px !important;
  font-weight: 600 !important;
  margin: 4px 0 !important;
}

.vk-header__mobile-login {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

.vk-header__mobile-register {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.9), rgba(139, 58, 42, 0.9)) !important;
  color: #fff !important;
}

/* Responsive */
@media (max-width: 900px) {
  .lg-header__nav {
    display: none !important;
  }
  
  .lg-profile-btn span {
    display: none !important;
  }
}
@media (min-width: 901px) {
  .vk-header__burger {
    display: none !important;
  }
  
  .vk-header__mobile {
    display: none !important;
  }
  
  .vk-header__overlay {
    display: none !important;
  }
}

.lg-profile-btn:hover {
  background: rgba(220, 20, 60, 0.24);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(220, 20, 60, 0.30);
}

.lg-profile-btn:active {
  transform: scale(0.96);
  transition-duration: 0.08s;
}

/* Auth buttons */
.lg-btn-login {
  padding: 7px 16px;
  border-radius: var(--lg-radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lg-btn-login:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.lg-btn-register {
  padding: 7px 18px;
  border-radius: var(--lg-radius-sm);
  background: linear-gradient(135deg,
    rgba(220, 20, 60, 0.85) 0%,
    rgba(160, 14, 44, 0.90) 100%);
  border: 1px solid rgba(220, 20, 60, 0.50);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s var(--lg-spring-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow:
    0 4px 16px rgba(220, 20, 60, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.lg-btn-register:hover {
  background: linear-gradient(135deg,
    rgba(240, 30, 70, 0.95) 0%,
    rgba(220, 20, 60, 0.95) 100%);
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(220, 20, 60, 0.50),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lg-btn-register:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.08s;
}


/* ============================================================
   LIQUID GLASS SIDEBAR — iOS 26 style
   ============================================================ */

.lg-sidebar {
  position: fixed;
  top: 56px;
  left: 0;
  bottom: 0;
  width: 260px;
  z-index: 500;
  padding: 20px 12px;

  background: linear-gradient(
    180deg,
    rgba(10, 2, 10, 0.65) 0%,
    rgba(8, 0, 8, 0.58) 100%
  );
  -webkit-backdrop-filter: var(--lg-filter-sidebar);
  backdrop-filter: var(--lg-filter-sidebar);

  border-right: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    4px 0 40px rgba(0, 0, 0, 0.55),
    inset -1px 0 0 rgba(220, 20, 60, 0.08);

  transition: width 0.35s var(--lg-spring-soft), transform 0.35s var(--lg-spring-soft);
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.lg-sidebar::-webkit-scrollbar { width: 0; }

.lg-sidebar.is-collapsed {
  width: 68px;
}

/* Sidebar section label */
.lg-sidebar__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.28);
  padding: 16px 12px 6px;
  white-space: nowrap;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.lg-sidebar.is-collapsed .lg-sidebar__label {
  opacity: 0;
}

/* Sidebar nav item */
.lg-sidebar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--lg-radius-sm);
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.3s var(--lg-spring),
    box-shadow 0.2s ease;
  position: relative;
  margin-bottom: 2px;
}

.lg-sidebar__item i {
  font-size: 16px;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.3s var(--lg-spring), color 0.2s ease;
}

.lg-sidebar__item span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.2s ease;
}

.lg-sidebar.is-collapsed .lg-sidebar__item span {
  opacity: 0;
  pointer-events: none;
}

.lg-sidebar__item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(2px);
}

.lg-sidebar__item:hover i {
  opacity: 1;
  color: #dc143c;
  transform: scale(1.15);
}

.lg-sidebar__item.is-active {
  background: linear-gradient(135deg,
    rgba(220, 20, 60, 0.22) 0%,
    rgba(139, 58, 42, 0.14) 100%);
  color: #ff4060;
  border: 1px solid rgba(220, 20, 60, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 4px 16px rgba(220, 20, 60, 0.12);
}

.lg-sidebar__item.is-active i {
  opacity: 1;
  color: #dc143c;
}

/* Active item left accent line */
.lg-sidebar__item.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #dc143c, #a00e2c);
  box-shadow: 0 0 8px rgba(220, 20, 60, 0.60);
}

/* Logout item */
.lg-sidebar__item--logout {
  color: rgba(220, 80, 80, 0.75);
  margin-top: 8px;
}

.lg-sidebar__item--logout:hover {
  background: rgba(220, 20, 60, 0.08);
  color: #ff4040;
}

/* Toggle button */
.lg-sidebar__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.lg-sidebar__toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lg-sidebar.is-collapsed .lg-sidebar__toggle {
  transform: rotate(180deg);
}


/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */

.lg-main {
  margin-left: 260px;
  padding: 24px 28px;
  min-height: 100vh;
  transition: margin-left 0.35s var(--lg-spring-soft);
}

.lg-main.sidebar-collapsed {
  margin-left: 68px;
}

@media (max-width: 900px) {
  .lg-main {
    margin-left: 0;
    padding: 16px;
  }
  .lg-sidebar {
    transform: translateX(-100%);
  }
  .lg-sidebar.is-open {
    transform: translateX(0);
  }
}


/* ============================================================
   HERO SECTION — iOS 26 Liquid Glass hero
   ============================================================ */

.lg-hero {
  position: relative;
  border-radius: var(--lg-radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero background layers */
.lg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Deep background */
.lg-hero__bg-deep {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #0a0008 0%,
    #120008 30%,
    #0d0010 60%,
    #080006 100%);
}

/* Animated orbs specific to hero */
.lg-hero__orb {
  position: absolute;
  border-radius: 50%;
  animation: lgHeroOrb var(--d, 15s) var(--e, ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.lg-hero__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle at 40% 40%,
    rgba(220, 20, 60, 0.30) 0%,
    rgba(160, 14, 44, 0.15) 40%,
    transparent 65%);
  top: -20%; left: -15%;
  filter: blur(60px);
  --d: 18s; --e: cubic-bezier(0.4, 0, 0.6, 1);
}

.lg-hero__orb--2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle at 60% 40%,
    rgba(139, 58, 42, 0.28) 0%,
    rgba(92, 36, 24, 0.15) 50%,
    transparent 70%);
  top: 10%; right: -10%;
  filter: blur(70px);
  --d: 24s;
  animation-direction: alternate-reverse;
}

.lg-hero__orb--3 {
  width: 450px; height: 450px;
  background: radial-gradient(circle at 50% 50%,
    rgba(232, 69, 60, 0.20) 0%,
    transparent 65%);
  bottom: -10%; left: 20%;
  filter: blur(80px);
  --d: 14s;
}

@keyframes lgHeroOrb {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(50px, -40px) scale(1.12); }
  100% { transform: translate(-30px, 30px) scale(0.92); }
}

/* Equalizer bars */
.lg-hero__eq {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding: 0 40px;
  z-index: 1;
  pointer-events: none;
}

.lg-hero__eq-bar {
  display: block;
  width: 3px;
  background: linear-gradient(0deg,
    rgba(220, 20, 60, 0.6) 0%,
    rgba(232, 69, 60, 0.8) 50%,
    rgba(255, 100, 80, 0.4) 100%);
  border-radius: 2px 2px 0 0;
  transform-origin: bottom center;
  animation: lgEqBar var(--spd, 1.6s) ease-in-out infinite alternate;
  opacity: 0.20;
}

@keyframes lgEqBar {
  0%   { transform: scaleY(0.15); opacity: 0.12; }
  100% { transform: scaleY(1); opacity: 0.28; }
}

/* Glass content box */
.lg-hero__glass {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 52px 48px;
  max-width: 680px;
  width: 90%;

  background: linear-gradient(
    145deg,
    rgba(20, 6, 14, 0.55) 0%,
    rgba(10, 2, 8, 0.45) 50%,
    rgba(15, 4, 10, 0.50) 100%
  );
  -webkit-backdrop-filter: saturate(200%) brightness(1.1) blur(32px);
  backdrop-filter: saturate(200%) brightness(1.1) blur(32px);

  border-radius: var(--lg-radius-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);

  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.70),
    0 12px 32px rgba(220, 20, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.30);
}

/* Vinyl shimmer on hero glass */
.lg-hero__glass::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.40),
    rgba(255, 255, 255, 0.60),
    rgba(255, 255, 255, 0.40),
    transparent);
  animation: lgGlassShimmer 6s ease-in-out infinite;
}

@keyframes lgGlassShimmer {
  0%, 60%   { opacity: 0.5; left: 15%; right: 15%; }
  80%       { opacity: 1.0; left: 5%; right: 5%; }
  100%      { opacity: 0.5; left: 15%; right: 15%; }
}

/* Hero badge */
.lg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--lg-radius-pill);
  background: rgba(220, 20, 60, 0.18);
  border: 1px solid rgba(220, 20, 60, 0.35);
  color: #ff6080;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: lgBadgeFloat 4s ease-in-out infinite;
}

.lg-hero__badge i {
  font-size: 12px;
  animation: lgBadgeIcon 2s ease-in-out infinite;
}

@keyframes lgBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}

@keyframes lgBadgeIcon {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2) rotate(5deg); }
}

/* Hero title */
.lg-hero__title {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.lg-hero__title-accent {
  display: inline-block;
  background: linear-gradient(135deg,
    #ff4060 0%,
    #dc143c 40%,
    #e8453c 70%,
    #ff6040 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: lgTitleGradient 4s ease-in-out infinite alternate;
}

@keyframes lgTitleGradient {
  0%   { background-position: 0% center; }
  100% { background-position: 100% center; }
}

/* Hero description */
.lg-hero__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-weight: 400;
}

/* Hero CTA buttons */
.lg-hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Hero stats */
.lg-hero__stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.lg-hero__stat {
  text-align: center;
}

.lg-hero__stat-val {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
}

.lg-hero__stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}


/* ============================================================
   BUTTONS — iOS 26 liquid glass buttons
   ============================================================ */

/* Primary CTA */
.lg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--lg-radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s var(--lg-spring-soft);
  border: none;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Shine sweep on hover */
.lg-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.lg-btn:hover::after {
  left: 160%;
}

.lg-btn--primary {
  background: linear-gradient(135deg,
    rgba(220, 20, 60, 0.90) 0%,
    rgba(180, 10, 40, 0.92) 60%,
    rgba(139, 58, 42, 0.88) 100%);
  color: #fff;
  border: 1px solid rgba(220, 20, 60, 0.45);
  box-shadow:
    0 6px 24px rgba(220, 20, 60, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.20);
}

.lg-btn--primary:hover {
  background: linear-gradient(135deg,
    rgba(240, 30, 75, 0.96) 0%,
    rgba(220, 20, 60, 0.96) 60%,
    rgba(160, 70, 55, 0.92) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 36px rgba(220, 20, 60, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  color: #fff;
}

.lg-btn--primary:active {
  transform: translateY(-1px) scale(0.99);
  transition-duration: 0.08s;
}

.lg-btn--glass {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.lg-btn--glass:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.lg-btn--sm {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 10px;
}

.lg-btn--lg {
  padding: 15px 36px;
  font-size: 17px;
  border-radius: 16px;
}

.lg-btn--pill {
  border-radius: var(--lg-radius-pill);
}

/* Loading state */
.lg-btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.lg-btn.is-loading::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lgBtnSpin 0.7s linear infinite;
  margin-right: 4px;
}

@keyframes lgBtnSpin {
  to { transform: rotate(360deg); }
}


/* ============================================================
   FEATURE CARDS GRID
   ============================================================ */

.lg-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.lg-feature-card {
  position: relative;
  padding: 26px;
  border-radius: var(--lg-radius-lg);
  overflow: hidden;
  cursor: default;

  background: linear-gradient(
    145deg,
    rgba(18, 6, 14, 0.60) 0%,
    rgba(12, 2, 10, 0.50) 100%
  );
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);

  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(0, 0, 0, 0.30);
  border-bottom: 1px solid rgba(0, 0, 0, 0.40);

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.50),
    0 2px 8px rgba(220, 20, 60, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transition:
    transform 0.4s var(--lg-spring),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

/* Icon container */
.lg-feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  color: #fff;
  position: relative;
  transition: transform 0.4s var(--lg-spring);
}

.lg-feature-card__icon--crimson {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.85), rgba(139, 58, 42, 0.75));
  box-shadow:
    0 8px 24px rgba(220, 20, 60, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.lg-feature-card__icon--ruby {
  background: linear-gradient(135deg, rgba(180, 10, 40, 0.85), rgba(100, 0, 20, 0.75));
  box-shadow:
    0 8px 24px rgba(180, 10, 40, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.lg-feature-card__icon--ember {
  background: linear-gradient(135deg, rgba(232, 69, 60, 0.85), rgba(180, 40, 30, 0.75));
  box-shadow:
    0 8px 24px rgba(232, 69, 60, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.lg-feature-card__title {
  font-size: 17px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}

.lg-feature-card__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.60;
  margin: 0;
}

.lg-feature-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.60),
    0 6px 20px rgba(220, 20, 60, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  border-top-color: rgba(255, 255, 255, 0.20);
}

.lg-feature-card:hover .lg-feature-card__icon {
  transform: scale(1.12) rotate(-3deg);
}

/* Inner glow on hover */
.lg-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(220, 20, 60, 0.08) 0%,
    transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lg-feature-card:hover::after {
  opacity: 1;
}


/* ============================================================
   PRICING CARDS
   ============================================================ */

.lg-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.lg-pricing-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--lg-radius-lg);
  overflow: hidden;

  background: linear-gradient(
    160deg,
    rgba(16, 4, 12, 0.62) 0%,
    rgba(10, 2, 8, 0.52) 100%
  );
  -webkit-backdrop-filter: saturate(190%) blur(24px);
  backdrop-filter: saturate(190%) blur(24px);

  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);

  transition: all 0.4s var(--lg-spring-soft);
}

.lg-pricing-card--featured {
  background: linear-gradient(
    160deg,
    rgba(220, 20, 60, 0.22) 0%,
    rgba(139, 58, 42, 0.16) 50%,
    rgba(10, 2, 8, 0.55) 100%
  );
  border-top-color: rgba(220, 20, 60, 0.40);
  border-left-color: rgba(220, 20, 60, 0.20);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(220, 20, 60, 0.10),
    inset 0 1px 0 rgba(220, 20, 60, 0.22);
}

/* Featured badge */
.lg-pricing-card--featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 16px;
  right: -28px;
  background: linear-gradient(135deg, #dc143c, #8b0000);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 32px;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.45);
}

.lg-pricing-card__name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 12px;
}

.lg-pricing-card--featured .lg-pricing-card__name {
  color: rgba(220, 20, 60, 0.80);
}

.lg-pricing-card__price {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}

.lg-pricing-card__price sup {
  font-size: 20px;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}

.lg-pricing-card__period {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 20px;
}

.lg-pricing-card__divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255, 255, 255, 0.08), transparent);
  margin-bottom: 20px;
}

.lg-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.lg-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  padding: 6px 0;
  line-height: 1.4;
}

.lg-pricing-card__features li i {
  color: #dc143c;
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.lg-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.65),
    0 8px 24px rgba(220, 20, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.lg-pricing-card--featured:hover {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.65),
    0 8px 24px rgba(220, 20, 60, 0.30),
    inset 0 1px 0 rgba(220, 20, 60, 0.25);
}


/* ============================================================
   PLATFORM MARQUEE — streaming logos scroll
   ============================================================ */

.lg-marquee-wrap {
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 32px;
  position: relative;
}

.lg-marquee-wrap::before,
.lg-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.lg-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg,
    rgba(6, 0, 8, 1) 0%,
    transparent 100%);
}

.lg-marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg,
    rgba(6, 0, 8, 1) 0%,
    transparent 100%);
}

.lg-marquee-track {
  display: flex;
  gap: 20px;
  animation: lgMarquee 30s linear infinite;
  width: max-content;
}

.lg-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes lgMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lg-platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--lg-radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.lg-platform-chip:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border-color: rgba(220, 20, 60, 0.25);
  transform: scale(1.04);
}

.lg-platform-chip i,
.lg-platform-chip img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* ============================================================
    RELEASE CARD
    ============================================================ */

/* ============================================================
    RB-HERO OVERRIDES — Liquid Glass styles for existing rb-hero markup
    ============================================================ */

/* ============================================================
    PLATFORMS — scrolling marquee (Liquid Glass overrides)
    ============================================================ */
.rb-platforms {
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
}

.rb-platforms__label {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
}

.rb-platforms__track {
  display: flex;
  gap: 24px;
  animation: lgMarquee 30s linear infinite;
  width: max-content;
  padding: 20px 0;
}

.rb-platforms__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--lg-radius-pill);
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.rb-platforms__item i {
  font-size: 18px;
  color: var(--rb-crimson, #dc143c);
}

.rb-platforms__item:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(220,20,60,0.25);
  transform: scale(1.04);
}

@keyframes lgMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.rb-platforms__track:hover {
  animation-play-state: paused;
}

/* ============================================================
    RB-FEATURES, RB-PRICING, RB-CTA — Liquid Glass overrides
    ============================================================ */
.rb-features {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  margin-bottom: 32px !important;
}

.rb-feature {
  background: linear-gradient(145deg, rgba(18, 6, 14, 0.6) 0%, rgba(12, 2, 10, 0.5) 100%) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
  backdrop-filter: saturate(180%) blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--lg-radius-lg) !important;
  padding: 26px !important;
  transition: all 0.4s var(--lg-spring) !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

.rb-feature:hover {
  transform: translateY(-5px) scale(1.01) !important;
  border-color: rgba(220, 20, 60, 0.3) !important;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.6), 0 6px 20px rgba(220, 20, 60, 0.14) !important;
}

.rb-feature__icon {
  width: 52px !important;
  height: 52px !important;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.85), rgba(139, 58, 42, 0.75)) !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 22px !important;
  margin-bottom: 18px !important;
  box-shadow: 0 8px 24px rgba(220, 20, 60, 0.35) !important;
}

.rb-feature__title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 8px !important;
}

.rb-feature__desc {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.52) !important;
  line-height: 1.6 !important;
}

/* Pricing */
.rb-pricing {
  margin-bottom: 32px !important;
  padding: 48px 20px !important;
  background: linear-gradient(160deg, rgba(16, 4, 12, 0.62) 0%, rgba(10, 2, 8, 0.52) 100%) !important;
  -webkit-backdrop-filter: saturate(190%) blur(24px) !important;
  backdrop-filter: saturate(190%) blur(24px) !important;
  border-radius: var(--lg-radius-lg) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55) !important;
}

.rb-pricing__title {
  text-align: center !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin-bottom: 8px !important;
}

.rb-pricing__subtitle {
  text-align: center !important;
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 32px !important;
}

.rb-pricing__grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 20px !important;
}

.rb-pricing-card {
  background: linear-gradient(145deg, rgba(18, 6, 14, 0.6) 0%, rgba(12, 2, 10, 0.5) 100%) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
  backdrop-filter: saturate(180%) blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--lg-radius-lg) !important;
  padding: 28px !important;
  text-align: center !important;
  position: relative !important;
  transition: all 0.4s var(--lg-spring-soft) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

.rb-pricing-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 8px 24px rgba(220, 20, 60, 0.12) !important;
}

.rb-pricing-card--featured {
  background: linear-gradient(160deg, rgba(220, 20, 60, 0.22) 0%, rgba(139, 58, 42, 0.16) 50%, rgba(10, 2, 8, 0.55) 100%) !important;
  border: 1px solid rgba(220, 20, 60, 0.4) !important;
}

.rb-pricing-card__badge {
  position: absolute !important;
  top: -12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(135deg, #dc143c, #8b0000) !important;
  color: #fff !important;
  padding: 6px 20px !important;
  border-radius: 50px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.rb-pricing-card__icon {
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.85), rgba(139, 58, 42, 0.75)) !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 26px !important;
  margin: 0 auto 18px !important;
  box-shadow: 0 8px 24px rgba(220, 20, 60, 0.35) !important;
}

.rb-pricing-card__name {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 6px !important;
}

.rb-pricing-card__desc {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-bottom: 20px !important;
}

.rb-pricing-card__price {
  font-size: 40px !important;
  font-weight: 800 !important;
  color: #dc143c !important;
  margin-bottom: 4px !important;
}

.rb-pricing-card__price span {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.rb-pricing-card__features {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 !important;
  text-align: left !important;
}

.rb-pricing-card__feature {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 0 !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  border-bottom: 1px solid rgba(220, 20, 60, 0.06) !important;
}

.rb-pricing-card__feature:last-child {
  border-bottom: none !important;
}

.rb-pricing-card__feature i {
  color: #dc143c !important;
  font-size: 14px !important;
  flex-shrink: 0 !important;
}

.rb-pricing-card__btn {
  display: block !important;
  width: 100% !important;
  padding: 14px !important;
  border-radius: var(--lg-radius-sm) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.rb-pricing-card__btn--primary {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.9) 0%, rgba(139, 58, 42, 0.9) 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(220, 20, 60, 0.5) !important;
}

.rb-pricing-card__btn--primary:hover {
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4) !important;
  color: #fff !important;
}

.rb-pricing-card__btn--outline {
  background: transparent !important;
  border: 2px solid rgba(220, 20, 60, 0.5) !important;
  color: #dc143c !important;
}

.rb-pricing-card__btn--outline:hover {
  background: rgba(220, 20, 60, 0.15) !important;
  color: #fff !important;
}

/* CTA */
.rb-cta {
  background: linear-gradient(160deg, rgba(220, 20, 60, 0.15) 0%, rgba(16, 4, 12, 0.5) 100%) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
  backdrop-filter: saturate(180%) blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: var(--lg-radius-lg) !important;
  padding: 48px 40px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

.rb-cta::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.8), transparent) !important;
}

.rb-cta__title {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin-bottom: 12px !important;
}

.rb-cta__desc {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin-bottom: 28px !important;
  max-width: 500px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Responsive */
@media (max-width: 768px) {
  .rb-hero__title { font-size: 32px !important; }
  .rb-hero__desc { font-size: 15px !important; }
  .rb-hero__stats { gap: 24px !important; }
  .rb-hero__stat-value { font-size: 26px !important; }
  .rb-hero__content { padding: 40px 20px !important; }
  .rb-hero { min-height: 420px !important; }
  .rb-pricing__title { font-size: 26px !important; }
}

@media (max-width: 480px) {
  .rb-hero__title { font-size: 28px !important; }
  .rb-hero__desc { font-size: 14px !important; }
  .rb-hero__ctas { flex-direction: column !important; gap: 10px !important; }
  .rb-hero__stats { gap: 20px !important; }
  .rb-hero__stat-value { font-size: 24px !important; }
  .rb-hero__content { padding: 40px 20px !important; }
  .rb-hero { min-height: 400px !important; }
  .rb-features { grid-template-columns: 1fr !important; gap: 15px !important; }
  .rb-pricing__grid { grid-template-columns: 1fr !important; gap: 15px !important; }
  .rb-pricing__title { font-size: 24px !important; }
  .rb-cta { padding: 32px 20px !important; }
  .rb-cta__title { font-size: 22px !important; }
}
.rb-hero {
  position: relative;
  border-radius: var(--lg-radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lg-glass-base) !important;
  -webkit-backdrop-filter: var(--lg-filter-card) !important;
  backdrop-filter: var(--lg-filter-card) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: var(--lg-shadow-card) !important;
}

.rb-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rb-hero__bg-deep {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #0a0008 0%,
    #120008 30%,
    #0d0010 60%,
    #080006 100%);
}

.rb-hero__orb {
  position: absolute;
  border-radius: 50%;
  animation: lgHeroOrb var(--d, 15s) var(--e, ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.rb-hero__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle at 40% 40%,
    rgba(220, 20, 60, 0.30) 0%,
    rgba(160, 14, 44, 0.15) 40%,
    transparent 65%);
  top: -20%; left: -15%;
  filter: blur(60px);
  --d: 18s; --e: cubic-bezier(0.4, 0, 0.6, 1);
}

.rb-hero__orb--2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle at 60% 40%,
    rgba(139, 58, 42, 0.28) 0%,
    rgba(92, 36, 24, 0.15) 50%,
    transparent 70%);
  top: 10%; right: -10%;
  filter: blur(70px);
  --d: 24s;
  animation-direction: alternate-reverse;
}

.rb-hero__orb--3 {
  width: 450px; height: 450px;
  background: radial-gradient(circle at 50% 50%,
    rgba(232, 69, 60, 0.20) 0%,
    transparent 65%);
  bottom: -10%; left: 20%;
  filter: blur(80px);
  --d: 14s;
}

@keyframes lgHeroOrb {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(50px, -40px) scale(1.12); }
  100% { transform: translate(-30px, 30px) scale(0.92); }
}

.rb-hero__eq {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding: 0 40px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.20;
}

.rb-hero__eq span {
  display: block;
  width: 3px;
  background: linear-gradient(0deg,
    rgba(220, 20, 60, 0.6) 0%,
    rgba(232, 69, 60, 0.8) 50%,
    rgba(255, 100, 80, 0.4) 100%);
  border-radius: 2px 2px 0 0;
  transform-origin: bottom center;
  animation: lgEqBar var(--spd, 1.6s) ease-in-out infinite alternate;
}

@keyframes lgEqBar {
  0%   { transform: scaleY(0.15); opacity: 0.12; }
  100% { transform: scaleY(1); opacity: 0.28; }
}

.rb-hero__brick {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='40'%3E%3Crect x='0' y='0' width='38' height='18' rx='1' fill='none' stroke='%23dc143c' stroke-width='1'/%3E%3Crect x='40' y='0' width='38' height='18' rx='1' fill='none' stroke='%23dc143c' stroke-width='1'/%3E%3Crect x='20' y='20' width='38' height='18' rx='1' fill='none' stroke='%23dc143c' stroke-width='1'/%3E%3Crect x='0' y='20' width='18' height='18' rx='1' fill='none' stroke='%23dc143c' stroke-width='1'/%3E%3Crect x='60' y='20' width='18' height='18' rx='1' fill='none' stroke='%23dc143c' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 40px;
}

.rb-hero__vinyl {
  position: absolute;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
  animation: vinylSpin 20s linear infinite;
}

.rb-hero__vinyl--left {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -80px;
}

.rb-hero__vinyl--right {
  width: 250px;
  height: 250px;
  bottom: 5%;
  right: -60px;
  animation-direction: reverse;
  animation-duration: 25s;
}

@keyframes vinylSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.rb-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 52px 48px;
  max-width: 680px;
  width: 90%;
  background: linear-gradient(
    145deg,
    rgba(20, 6, 14, 0.55) 0%,
    rgba(10, 2, 8, 0.45) 50%,
    rgba(15, 4, 10, 0.50) 100%
  ) !important;
  -webkit-backdrop-filter: saturate(200%) brightness(1.1) blur(32px) !important;
  backdrop-filter: saturate(200%) brightness(1.1) blur(32px) !important;
  border-radius: var(--lg-radius-xl) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.70) !important,
    0 12px 32px rgba(220, 20, 60, 0.12) !important,
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important,
    inset 0 -1px 0 rgba(0, 0, 0, 0.30) !important;
}

.rb-hero__badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 7px 18px !important;
  border-radius: var(--lg-radius-pill) !important;
  background: rgba(220, 20, 60, 0.18) !important;
  border: 1px solid rgba(220, 20, 60, 0.35) !important;
  color: #ff6080 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2.5px !important;
  margin-bottom: 24px !important;
}

.rb-hero__title {
  font-size: 52px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 16px !important;
  line-height: 1.08 !important;
  letter-spacing: -1.5px !important;
}

.rb-hero__desc {
  font-size: 17px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  max-width: 540px !important;
  margin: 0 auto 36px !important;
  line-height: 1.65 !important;
}

.rb-hero__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 28px !important;
  border-radius: var(--lg-radius-sm) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.rb-hero__btn--primary {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.9) 0%, rgba(139, 58, 42, 0.9) 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(220, 20, 60, 0.5) !important;
  box-shadow: 0 6px 24px rgba(220, 20, 60, 0.4) !important;
}

.rb-hero__btn--primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 32px rgba(220, 20, 60, 0.5) !important;
  color: #fff !important;
}

.rb-hero__btn--outline {
  background: transparent !important;
  border: 2px solid rgba(220, 20, 60, 0.5) !important;
  color: #fff !important;
}

.rb-hero__btn--outline:hover {
  background: rgba(220, 20, 60, 0.15) !important;
  border-color: #dc143c !important;
  color: #fff !important;
}

.rb-hero__stats {
  display: flex !important;
  gap: 32px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

.rb-hero__stat-value {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #fff !important;
}

.rb-hero__stat-label {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-top: 4px !important;
}

.rb-hero__glass::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.40),
    rgba(255, 255, 255, 0.60),
    rgba(255, 255, 255, 0.40),
    transparent);
  animation: lgGlassShimmer 6s ease-in-out infinite;
}

@keyframes lgGlassShimmer {
  0%, 60%   { opacity: 0.5; left: 15%; right: 15%; }
  80%       { opacity: 1.0; left: 5%; right: 5%; }
  100%      { opacity: 0.5; left: 15%; right: 15%; }
}

.rb-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--lg-radius-pill);
  background: rgba(220, 20, 60, 0.18);
  border: 1px solid rgba(220, 20, 60, 0.35);
  color: #ff6080;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: lgBadgeFloat 4s ease-in-out infinite;
}

.rb-hero__badge i {
  font-size: 12px;
  animation: lgBadgeIcon 2s ease-in-out infinite;
}

@keyframes lgBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}

@keyframes lgBadgeIcon {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2) rotate(5deg); }
}

.rb-hero__title {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.rb-hero__title-accent {
  display: inline-block;
  background: linear-gradient(135deg,
    #ff4060 0%,
    #dc143c 40%,
    #e8453c 70%,
    #ff6040 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: lgTitleGradient 4s ease-in-out infinite alternate;
}

@keyframes lgTitleGradient {
  0%   { background-position: 0% center; }
  100% { background-position: 100% center; }
}

.rb-hero__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-weight: 400;
}

.rb-hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.rb-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--lg-radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s var(--lg-spring-soft);
  border: none;
  position: relative;
  overflow: hidden;
}

.rb-hero__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.rb-hero__btn:hover::after {
  left: 160%;
}

.rb-hero__btn--primary {
  background: linear-gradient(135deg,
    rgba(220, 20, 60, 0.90) 0%,
    rgba(180, 10, 40, 0.92) 60%,
    rgba(139, 58, 42, 0.88) 100%);
  color: #fff;
  border: 1px solid rgba(220, 20, 60, 0.45);
  box-shadow:
    0 6px 24px rgba(220, 20, 60, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.20);
}

.rb-hero__btn--primary:hover {
  background: linear-gradient(135deg,
    rgba(240, 30, 75, 0.96) 0%,
    rgba(220, 20, 60, 0.96) 60%,
    rgba(160, 70, 55, 0.92) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 36px rgba(220, 20, 60, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  color: #fff;
}

.rb-hero__btn--primary:active {
  transform: translateY(-1px) scale(0.99);
  transition-duration: 0.08s;
}

.rb-hero__btn--outline {
  background: transparent;
  border: 2px solid var(--lg-border-glow);
  color: var(--rb-crimson, #dc143c);
}

.rb-hero__btn--outline:hover {
  background: rgba(220, 20, 60, 0.08);
  border-color: #ff6080;
  color: #fff;
}

.rb-hero__stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.rb-hero__stat {
  text-align: center;
}

.rb-hero__stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
}

.rb-hero__stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ============================================================
    RELEASE CARD
    ============================================================

.lg-release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.lg-release-card {
  position: relative;
  border-radius: var(--lg-radius-lg);
  overflow: hidden;

  background: linear-gradient(
    160deg,
    rgba(16, 4, 12, 0.58) 0%,
    rgba(10, 2, 8, 0.48) 100%
  );
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);

  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(0, 0, 0, 0.30);
  border-bottom: 1px solid rgba(0, 0, 0, 0.40);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.50),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transition: all 0.4s var(--lg-spring-soft);
}

/* Cover art */
.lg-release-card__cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.lg-release-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--lg-spring-soft);
}

.lg-release-card:hover .lg-release-card__cover img {
  transform: scale(1.06);
}

/* Play overlay */
.lg-release-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.lg-release-card__play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(220, 20, 60, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.30);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.35s var(--lg-spring);
  box-shadow:
    0 8px 24px rgba(220, 20, 60, 0.50),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lg-release-card:hover .lg-release-card__play {
  background: rgba(0, 0, 0, 0.22);
}

.lg-release-card:hover .lg-release-card__play-btn {
  opacity: 1;
  transform: scale(1);
}

/* Card info */
.lg-release-card__info {
  padding: 16px;
}

.lg-release-card__title {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lg-release-card__artist {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  margin: 0 0 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Status badges */
.lg-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--lg-radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.lg-badge--approved {
  background: rgba(34, 197, 94, 0.14);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.lg-badge--pending {
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.lg-badge--rejected {
  background: rgba(220, 20, 60, 0.14);
  color: #fb7185;
  border: 1px solid rgba(220, 20, 60, 0.22);
}

.lg-badge--single {
  background: rgba(59, 130, 246, 0.14);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.lg-badge--album {
  background: rgba(168, 85, 247, 0.14);
  color: #c4b5fd;
  border: 1px solid rgba(168, 85, 247, 0.22);
}

.lg-release-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.60),
    0 6px 20px rgba(220, 20, 60, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}


/* ============================================================
   STATS WIDGET
   ============================================================ */

.lg-stats-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.lg-stat-widget {
  flex: 1 1 180px;
  padding: 20px;
  border-radius: var(--lg-radius-md);
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    150deg,
    rgba(18, 5, 12, 0.58) 0%,
    rgba(10, 2, 8, 0.48) 100%
  );
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);

  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);

  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lg-stat-widget__icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
  color: rgba(220, 20, 60, 0.75);
}

.lg-stat-widget__val {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.lg-stat-widget__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.40);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Ambient light under stat */
.lg-stat-widget::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 40px;
  background: rgba(220, 20, 60, 0.10);
  filter: blur(20px);
  border-radius: 50%;
  pointer-events: none;
}


/* ============================================================
   SECTION HEADER
   ============================================================ */

.lg-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.lg-section-head__title {
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.5px;
  margin: 0;
}

.lg-section-head__title span {
  color: #dc143c;
}

.lg-section-head__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.40);
  margin: 4px 0 0;
}

.lg-section-head__action {
  color: rgba(220, 20, 60, 0.80);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.lg-section-head__action:hover {
  color: #dc143c;
}


/* ============================================================
   MINI PLAYER — sticky bottom player
   ============================================================ */

.lg-player {
  position: fixed;
  bottom: 0;
  left: 260px;
  right: 0;
  height: 70px;
  z-index: 1500;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 20px;

  background: linear-gradient(
    90deg,
    rgba(8, 0, 8, 0.82) 0%,
    rgba(12, 2, 10, 0.78) 100%
  );
  -webkit-backdrop-filter: saturate(200%) brightness(1.05) blur(40px);
  backdrop-filter: saturate(200%) brightness(1.05) blur(40px);

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-top-left-radius: 0;
  box-shadow:
    0 -8px 40px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transition: left 0.35s var(--lg-spring-soft);
}

.lg-player.sidebar-collapsed {
  left: 68px;
}

@media (max-width: 900px) {
  .lg-player {
    left: 0;
    padding-bottom: env(safe-area-inset-bottom);
    height: calc(62px + env(safe-area-inset-bottom));
  }
}

/* Album art */
.lg-player__art {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.50);
}

/* Track info */
.lg-player__info {
  min-width: 0;
  flex: 1;
}

.lg-player__title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.lg-player__artist {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Controls */
.lg-player__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lg-player__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.60);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--lg-spring-soft);
}

.lg-player__btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.12);
}

.lg-player__btn--play {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #dc143c, #8b0000);
  color: #fff;
  font-size: 16px;
  box-shadow:
    0 4px 16px rgba(220, 20, 60, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.lg-player__btn--play:hover {
  background: linear-gradient(135deg, #ff1a45, #dc143c);
  transform: scale(1.10);
  box-shadow:
    0 6px 24px rgba(220, 20, 60, 0.60),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Progress bar */
.lg-player__progress {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.lg-player__bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.lg-player__bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #dc143c, #e8453c);
  transition: width 0.1s linear;
  box-shadow: 0 0 6px rgba(220, 20, 60, 0.60);
  width: 35%;
}

.lg-player__time {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.30);
}


/* ============================================================
   FORMS — liquid glass inputs
   ============================================================ */

.lg-form-group {
  margin-bottom: 18px;
}

.lg-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.lg-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--lg-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.25s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-sizing: border-box;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.20);
}

.lg-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.lg-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(220, 20, 60, 0.50);
  box-shadow:
    0 0 0 3px rgba(220, 20, 60, 0.14),
    inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.lg-input:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.18);
}


/* ============================================================
   MODAL — iOS 26 liquid glass modal
   ============================================================ */

.lg-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0, 0, 0, 0.60);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lgModalFadeIn 0.25s ease;
}

@keyframes lgModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lg-modal {
  width: 100%;
  max-width: 480px;
  border-radius: var(--lg-radius-xl);
  overflow: hidden;
  position: relative;

  background: linear-gradient(
    155deg,
    rgba(22, 6, 16, 0.85) 0%,
    rgba(14, 2, 10, 0.78) 100%
  );
  -webkit-backdrop-filter: var(--lg-filter-modal);
  backdrop-filter: var(--lg-filter-modal);

  border-top: 1px solid rgba(255, 255, 255, 0.20);
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  border-right: 1px solid rgba(0, 0, 0, 0.30);
  border-bottom: 1px solid rgba(0, 0, 0, 0.50);

  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.80),
    0 8px 32px rgba(220, 20, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  animation: lgModalSlideUp 0.40s var(--lg-spring);
}

@keyframes lgModalSlideUp {
  from { transform: translateY(40px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1);  opacity: 1; }
}

.lg-modal__header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lg-modal__title {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  margin: 0;
  letter-spacing: -0.3px;
}

.lg-modal__body {
  padding: 20px 24px;
}

.lg-modal__footer {
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 10px;
}

.lg-modal__footer .lg-btn {
  flex: 1;
}


/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */

.lg-toast-stack {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
}

.lg-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--lg-radius-md);
  min-width: 280px;
  max-width: 360px;
  pointer-events: auto;

  background: linear-gradient(
    145deg,
    rgba(20, 6, 16, 0.92) 0%,
    rgba(14, 2, 10, 0.88) 100%
  );
  -webkit-backdrop-filter: saturate(200%) blur(32px);
  backdrop-filter: saturate(200%) blur(32px);

  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.30);
  border-bottom: 1px solid rgba(0, 0, 0, 0.40);

  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);

  animation: lgToastSlide 0.45s var(--lg-spring) both;
}

.lg-toast.is-out {
  animation: lgToastOut 0.3s ease forwards;
}

@keyframes lgToastSlide {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}

@keyframes lgToastOut {
  from { transform: translateX(0);   opacity: 1; }
  to   { transform: translateX(120%); opacity: 0; }
}

.lg-toast__icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.lg-toast--success .lg-toast__icon { color: #4ade80; }
.lg-toast--error   .lg-toast__icon { color: #fb7185; }
.lg-toast--info    .lg-toast__icon { color: #60a5fa; }
.lg-toast--warning .lg-toast__icon { color: #fbbf24; }

.lg-toast__title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
}

.lg-toast__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  margin-top: 2px;
  line-height: 1.4;
}


/* ============================================================
   MOBILE BOTTOM TAB BAR — iOS 26
   ============================================================ */

.lg-tabbar {
  display: none;
}

@media (max-width: 900px) {
  .lg-tabbar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    gap: 4px;

    background: linear-gradient(
      180deg,
      rgba(8, 0, 8, 0.82) 0%,
      rgba(6, 0, 6, 0.90) 100%
    );
    -webkit-backdrop-filter: saturate(200%) blur(40px);
    backdrop-filter: saturate(200%) blur(40px);

    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.55);
  }

  .lg-tabbar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    border-radius: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
    min-height: 52px;
    transition: all 0.25s var(--lg-spring-soft);
    position: relative;
  }

  .lg-tabbar__item i {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s var(--lg-spring);
  }

  .lg-tabbar__item.is-active {
    color: #dc143c;
    background: rgba(220, 20, 60, 0.12);
  }

  .lg-tabbar__item.is-active i {
    transform: scale(1.15);
  }

  .lg-tabbar__item.is-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    height: 2px;
    border-radius: 0 0 2px 2px;
    background: linear-gradient(90deg, transparent, #dc143c, transparent);
  }

  .lg-tabbar__item:active {
    transform: scale(0.88);
    transition-duration: 0.08s;
  }
}


/* ============================================================
   SCROLL BUTTONS
   ============================================================ */

.lg-scroll-btns {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lg-scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 14px;
  transition: all 0.3s var(--lg-spring);

  background: rgba(220, 20, 60, 0.70);
  color: #fff;
  border: 1px solid rgba(220, 20, 60, 0.40);
  box-shadow:
    0 6px 20px rgba(220, 20, 60, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);

  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lg-scroll-btn:hover {
  background: rgba(220, 20, 60, 0.90);
  transform: scale(1.12);
  box-shadow:
    0 8px 28px rgba(220, 20, 60, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lg-scroll-btn:active {
  transform: scale(0.92);
  transition-duration: 0.08s;
}


/* ============================================================
   OVERRIDES — применяем Liquid Glass к существующим элементам
   ============================================================ */

/* Override existing header */
.vk-header,
.header,
.modern-header {
  background: linear-gradient(
    180deg,
    rgba(12, 4, 10, 0.72) 0%,
    rgba(8, 2, 8, 0.65) 100%
  ) !important;
  -webkit-backdrop-filter: saturate(200%) brightness(1.05) blur(28px) !important;
  backdrop-filter: saturate(200%) brightness(1.05) blur(28px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.60),
              inset 0 -1px 0 rgba(220, 20, 60, 0.12) !important;
}

/* Override left sidebar */
.left-sidebar {
  background: linear-gradient(
    180deg,
    rgba(10, 2, 10, 0.68) 0%,
    rgba(8, 0, 8, 0.60) 100%
  ) !important;
  -webkit-backdrop-filter: saturate(190%) blur(32px) !important;
  backdrop-filter: saturate(190%) blur(32px) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 4px 0 40px rgba(0, 0, 0, 0.55) !important;
}

.left-sidebar__nav-item {
  color: rgba(255, 255, 255, 0.68) !important;
  border-radius: 10px !important;
  margin: 0 8px !important;
  transition: all 0.25s var(--lg-spring-soft) !important;
}

.left-sidebar__nav-item:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  transform: translateX(2px) !important;
}

/* Override cards */
.sb-home-card,
.content_bar .postBox,
.release-card,
.rb-pricing-card {
  background: linear-gradient(
    150deg,
    rgba(18, 5, 12, 0.58) 0%,
    rgba(10, 2, 8, 0.48) 100%
  ) !important;
  -webkit-backdrop-filter: saturate(180%) blur(18px) !important;
  backdrop-filter: saturate(180%) blur(18px) !important;
  border: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-right: 1px solid rgba(0, 0, 0, 0.28) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.38) !important;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.50),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transition: all 0.4s var(--lg-spring-soft) !important;
}

.sb-home-card:hover,
.release-card:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.60),
    0 6px 20px rgba(220, 20, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
}

/* Override hero glass box */
.rb-hero__content {
  background: linear-gradient(
    145deg,
    rgba(20, 6, 14, 0.55) 0%,
    rgba(10, 2, 8, 0.45) 50%,
    rgba(15, 4, 10, 0.50) 100%
  ) !important;
  -webkit-backdrop-filter: saturate(200%) brightness(1.08) blur(32px) !important;
  backdrop-filter: saturate(200%) brightness(1.08) blur(32px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.70),
    0 12px 32px rgba(220, 20, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* Override buttons */
.sb-home-btn--primary,
.btn-login,
.btn-register {
  background: linear-gradient(135deg,
    rgba(220, 20, 60, 0.88) 0%,
    rgba(160, 14, 44, 0.92) 100%) !important;
  border: 1px solid rgba(220, 20, 60, 0.45) !important;
  box-shadow:
    0 6px 24px rgba(220, 20, 60, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
  transition: all 0.35s var(--lg-spring-soft) !important;
}

.sb-home-btn--primary:hover,
.btn-login:hover,
.btn-register:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow:
    0 12px 36px rgba(220, 20, 60, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
}

/* Override scroll buttons */
.scroll-nav-fixed__btn,
#btnUp, #btnDown {
  background: rgba(220, 20, 60, 0.70) !important;
  border: 1px solid rgba(220, 20, 60, 0.40) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow:
    0 6px 20px rgba(220, 20, 60, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.20) !important;
  transition: all 0.3s var(--lg-spring) !important;
}

.scroll-nav-fixed__btn:hover,
#btnUp:hover, #btnDown:hover {
  transform: scale(1.15) !important;
  background: rgba(220, 20, 60, 0.90) !important;
  box-shadow:
    0 8px 28px rgba(220, 20, 60, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

/* Override ios26 tabbar */
.ios26-tabbar {
  background: linear-gradient(
    180deg,
    rgba(8, 0, 8, 0.82) 0%,
    rgba(6, 0, 6, 0.90) 100%
  ) !important;
  -webkit-backdrop-filter: saturate(200%) blur(40px) !important;
  backdrop-filter: saturate(200%) blur(40px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* Override modals */
.ios26-modal,
.modal-content {
  background: linear-gradient(
    155deg,
    rgba(22, 6, 16, 0.88) 0%,
    rgba(14, 2, 10, 0.82) 100%
  ) !important;
  -webkit-backdrop-filter: saturate(220%) blur(40px) !important;
  backdrop-filter: saturate(220%) blur(40px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-right: 1px solid rgba(0, 0, 0, 0.30) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.50) !important;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.80),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

/* Override inputs */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select,
.form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  backdrop-filter: blur(8px) !important;
  transition: all 0.25s ease !important;
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus {
  border-color: rgba(220, 20, 60, 0.50) !important;
  box-shadow:
    0 0 0 3px rgba(220, 20, 60, 0.14),
    inset 0 2px 4px rgba(0, 0, 0, 0.15) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}


/* ============================================================
   HOME PAGE SPECIFIC OVERRIDES — rb-home
   ============================================================ */

.rb-home {
  --rb-bg: transparent;
  --rb-text: rgba(255, 255, 255, 0.95);
  --rb-muted: rgba(255, 255, 255, 0.60);
}

.rb-hero {
  background: transparent !important;
  border: none !important;
}

.rb-hero__title {
  color: rgba(255, 255, 255, 0.97) !important;
  text-shadow: 0 2px 30px rgba(220, 20, 60, 0.25) !important;
}

.rb-hero__desc {
  color: rgba(255, 255, 255, 0.62) !important;
}


/* ============================================================
   SECTION DIVIDERS
   ============================================================ */

.lg-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(220, 20, 60, 0.20) 20%,
    rgba(220, 20, 60, 0.35) 50%,
    rgba(220, 20, 60, 0.20) 80%,
    transparent);
  margin: 32px 0;
  border: none;
}


/* ============================================================
   TYPOGRAPHY OVERRIDES
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  color: rgba(255, 255, 255, 0.95);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter, sans-serif;
  -webkit-font-smoothing: antialiased;
}

p, li, td, th, span, div {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, sans-serif;
}

a {
  transition: color 0.2s ease;
}


/* ============================================================
   SCROLLBAR — themed glass
   ============================================================ */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(220, 20, 60, 0.30);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(220, 20, 60, 0.55);
}


/* ============================================================
   SELECTION
   ============================================================ */

::selection {
  background: rgba(220, 20, 60, 0.35);
  color: #fff;
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .lg-hero__title {
    font-size: 36px !important;
  }

  .lg-hero__glass {
    padding: 36px 24px !important;
  }

  .lg-features {
    grid-template-columns: 1fr !important;
  }

  .lg-pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .lg-stats-row {
    flex-direction: column !important;
  }
}
