:root { --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Cinzel', 'Times New Roman', serif;
  --bg-body: #0B0E17;
  --bg-body-rgb: 11, 14, 23;
  --bg-card: #12162A;
  --bg-primary: #12162A;
  --bg-card-hover: #1A1F3A;
  --bg-elevated: #161B33;
  --bg-nav: rgba(11, 14, 23, 0.82);
  --bg-input: #161B33;
  --bg-surface: #0F1225;
  --text-primary: #E8EAF0;
  --text-secondary: #8B90A8;
  --text-tertiary: #555B75;
  --text-inverse: #0B0E17;
  --accent: #4F7DF5;
  --accent-hover: #6B93FF;
  --accent-light: rgba(79, 125, 245, 0.12);
  --accent-glow: rgba(79, 125, 245, 0.25);
  --gold: #D4A853;
  --gold-light: #F0D48A;
  --gold-dark: #B8882E;
  --gold-glow: rgba(212, 168, 83, 0.2);
  --gold-glow-strong: rgba(212, 168, 83, 0.4);
  --online-green: #34D399;
  --online-glow: rgba(52, 211, 153, 0.35);
  --success: #34D399;
  --warning: #FBBF24;
  --danger: #F87171;
  --premium-gold: #D4A853;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.03);
  --border-gold: rgba(212, 168, 83, 0.25);
  --border-accent: rgba(79, 125, 245, 0.25);
  --gradient-hero: linear-gradient(180deg, rgba(11, 14, 23, 0) 0%, #0B0E17 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  --gradient-gold: linear-gradient(135deg, #D4A853 0%, #F0D48A 50%, #D4A853 100%);
  --gradient-accent: linear-gradient(135deg, #4F7DF5 0%, #7C3AED 100%);
  --gradient-epic: linear-gradient(135deg, #0B0E17 0%, #1A1040 50%, #0B0E17 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow-blue: 0 0 30px rgba(79, 125, 245, 0.2);
  --shadow-glow-gold: 0 0 30px rgba(212, 168, 83, 0.15);
  --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-height: 68px;
  --header-height: var(--nav-height);
  --container-max: 1200px;
  --container-wide: 1400px;
}
[data-theme="light"] { --bg-body: #F0EDE6;
  --bg-body-rgb: 240, 237, 230;
  --bg-card: #FFFFFF;
  --bg-primary: #F5F3EE;
  --bg-card-hover: #F5F3EE;
  --bg-elevated: #FFFFFF;
  --bg-nav: rgba(240, 237, 230, 0.82);
  --bg-input: #F5F3EE;
  --bg-surface: #E8E4DC;
  --text-primary: #1A1530;
  --text-secondary: #5C566E;
  --text-tertiary: #9490A5;
  --text-inverse: #FFFFFF;
  --accent: #3B5FDB;
  --accent-hover: #2A4BC5;
  --accent-light: rgba(59, 95, 219, 0.08);
  --gold: #B8882E;
  --gold-dark: #9A6F1E;
  --gold-glow: rgba(184, 136, 46, 0.12);
  --gold-glow-strong: rgba(184, 136, 46, 0.25);
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.04);
  --border-gold: rgba(184, 136, 46, 0.2);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
*,
*::before,
*::after { margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html { font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body { font-family: var(--font-primary);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  transition: background-color var(--transition-slow), color var(--transition-base);
  overflow-x: hidden;
  position: relative;
}
a { color: inherit;
  text-decoration: none;
}
button { font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  font-size: inherit;
}
ul,
ol { list-style: none;
}
img { max-width: 100%;
  display: block;
}
input,
select,
textarea { font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
.container { width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.container--wide { max-width: var(--container-wide);
}
.sr-only { position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
#particles-canvas { position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}
body>*:not(#particles-canvas):not(#gallery-lightbox) { position: relative;
}
.navbar { position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000 !important;
  background: var(--bg-nav);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom-color: var(--border-gold);
}
.navbar__inner { display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.navbar__logo { display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 10;
}
.navbar__logo-img { height: 50px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-fast);
}
@media (max-width: 768px) { .navbar__logo-img { height: 35px;
  margin-top: 0;
}
}
  .logo-for-light { display: block; }
  .logo-for-dark { display: none; }
  [data-theme="dark"] .logo-for-light { display: none; }
  [data-theme="dark"] .logo-for-dark { display: block; }
.navbar__links { display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.navbar__link { position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  letter-spacing: 0.3px;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}
.navbar__link:hover { color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.05);
}
.navbar__link.active { color: var(--gold);
  background-color: var(--gold-glow);
}
[data-theme="light"] .navbar__link:hover { background-color: rgba(0, 0, 0, 0.04);
}
.navbar__link-icon { font-size: 17px;
  opacity: 0.7;
  line-height: 1;
}
.navbar__actions { display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
  z-index: 10;
}
.lang-switcher { position: relative;
  display: inline-block;
}
.lang-switcher__btn { display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.lang-switcher__btn:hover { border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.03);
}
.lang-switcher__dropdown { position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 4px;
  min-width: 160px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 1001;
}
.lang-switcher__dropdown::before { content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}
.lang-switcher:hover .lang-switcher__dropdown,
.lang-switcher__dropdown:hover { display: flex;
}
.lang-switcher__option { display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition-fast);
}
.lang-switcher__option:hover { background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}
.lang-switcher__option.active { background: rgba(184, 136, 46, 0.1);
  color: var(--gold);
}
[data-theme="light"] .lang-switcher__dropdown { background: #ffffff;
  border-color: #e5e7eb;
}
[data-theme="light"] .lang-switcher__option:hover { background: #f3f4f6;
}
.theme-toggle { width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  font-size: 20px;
  justify-content: center;
  color: var(--text-secondary);
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-spring);
}
.theme-toggle:hover { background-color: rgba(255, 255, 255, 0.06);
  color: var(--gold);
}
[data-theme="light"] .theme-toggle:hover { background-color: rgba(0, 0, 0, 0.05);
}
.theme-toggle:active { transform: scale(0.9);
}
.theme-toggle i { transition: transform var(--transition-spring);
}
.theme-toggle:hover i { transform: rotate(20deg);
}
[data-theme="light"] .theme-toggle__sun { display: none;
}
[data-theme="light"] .theme-toggle__moon { display: block;
}
.theme-toggle__sun { display: block;
}
.theme-toggle__moon { display: none;
}
.btn-back-premium { display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary) !important;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.btn-back-premium i { font-size: 15px;
  transition: transform var(--transition-fast);
}
.btn-back-premium:hover { color: var(--gold) !important;
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-back-premium:hover i { transform: translateX(-4px);
}
.btn { display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn--ghost { color: var(--text-secondary);
}
.btn--ghost:hover { color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.06);
}
.btn--primary { color: #1A1530;
  background: var(--gradient-gold);
  font-weight: 700;
  box-shadow: 0 2px 12px var(--gold-glow-strong), var(--shadow-inner);
}
.btn--primary:hover { box-shadow: 0 4px 24px var(--gold-glow-strong);
  transform: translateY(-1px);
  filter: brightness(1.1);
}
.btn--primary:active { transform: translateY(0);
  filter: brightness(0.95);
}
.btn--outline { color: var(--gold);
  border: 1.5px solid var(--border-gold);
}
.btn--outline:hover { background: var(--gold-glow);
  border-color: var(--gold);
}
.btn--accent { color: white;
  background: var(--gradient-accent);
  box-shadow: 0 2px 12px var(--accent-glow);
}
.btn--accent:hover { box-shadow: 0 4px 24px var(--accent-glow);
  transform: translateY(-1px);
  filter: brightness(1.1);
}
.btn--lg { padding: 14px 32px;
  font-size: 15px;
  border-radius: var(--radius-lg);
}
.navbar__hamburger { display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  gap: 5px;
  z-index: 10;
}
.navbar__hamburger span { display: block;
  width: 18px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) { opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg);
}
.navbar__mobile-menu { display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-body);
  padding: var(--space-lg);
  flex-direction: column;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  z-index: 999;
  overflow-y: auto;
}
.navbar__mobile-menu.open { opacity: 1;
  transform: translateY(0);
}
.navbar__mobile-menu .navbar__link { font-size: 16px;
  padding: 14px 16px;
}
.navbar__mobile-menu .mobile-actions { display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}
.navbar__mobile-menu .mobile-actions .btn { width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}
.hero { position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px var(--space-lg) var(--space-xl);
  overflow: visible;
}
.hero::before { content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, rgba(79, 125, 245, 0.03) 40%, transparent 70%);
  pointer-events: none;
}
.hero::after { content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bg-body), transparent);
  pointer-events: none;
}
.hero__top-banner { position: relative;
  z-index: 2;
  width: 100%;
  max-width: 728px;
  margin: 0 auto var(--space-lg);
}
.hero-banner--top { display: block;
  height: 90px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all var(--transition-base);
}
.hero-banner--top:hover { border-color: var(--border-gold);
  box-shadow: 0 0 20px var(--gold-glow);
}
.hero-banner--empty { display: flex !important;
  align-items: center;
  justify-content: center;
  border-style: dashed !important;
  font-size: 14px;
  color: var(--text-tertiary);
  text-decoration: none;
  cursor: default;
}
.hero-banner--empty:hover { border-color: var(--border-gold);
}
.hero-banner--top img { width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__columns { position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  gap: var(--space-lg);
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  align-items: start;
}
.hero__ad-column { display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
  min-width: 250px;
}
.side-list-title { font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
  padding-left: 4px;
}
.side-item { display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  color: var(--text-primary);
}
.side-item:hover { background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-gold);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.side-item__name { font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.side-item__badge { font-size: 12px;
}
.side-item__badge.premium { color: var(--gold);
}
.side-item__badge.promoted { color: #60a5fa;
}
.side-item__meta { font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 2px;
}
.side-item i.ph-caret-right { font-size: 14px;
  opacity: 0.3;
  transition: transform 0.2s ease;
}
.side-item:hover i.ph-caret-right { opacity: 1;
  color: var(--gold);
  transform: translateX(2px);
}
.status-text.online { color: var(--online-green);
  font-weight: 500;
}
.status-text.opening { color: #fbbf24;
  font-weight: 500;
}
.side-item--empty { border-style: dashed;
  opacity: 0.6;
  justify-content: flex-start;
  gap: 8px;
}
.side-item--empty:hover { opacity: 1;
  transform: none;
}
.side-item--empty i { font-size: 16px;
  color: var(--gold);
}
.side-item--empty span { font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
}
.hero__content { max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 50;
  text-align: center;
}
.hero__bottom-banners { position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-wide);
  margin: var(--space-lg) auto 0;
}
.hero__badge { display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease both;
}
.hero__badge-dot { width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--online-green);
  animation: pulseGlow 2s infinite;
}
.hero__title { font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero__title .highlight { background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle { font-size: clamp(16px, 2.5vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto var(--space-2xl);
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero__stats { display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero__stat { text-align: center;
}
.hero__stat-value { font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}
.hero__stat-label { font-size: 12px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.search-section { animation: fadeInUp 0.8s ease 0.4s both;
  position: relative;
  z-index: 10;
}
.search-bar { display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 6px 8px 6px 20px;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}
.search-bar:focus-within { border-color: var(--gold);
  box-shadow: var(--shadow-lg), 0 0 30px var(--gold-glow);
}
.search-bar__icon { flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-tertiary);
}
.search-bar__input { flex: 1;
  padding: 12px 4px;
  font-size: 15px;
  color: var(--text-primary);
  background: transparent;
  min-width: 0;
}
.search-bar__input::placeholder { color: var(--text-tertiary);
}
.search-bar__filters { display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.filter-chip { display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}
[data-theme="light"] .filter-chip { background: rgba(0, 0, 0, 0.03);
}
.filter-chip:hover { color: var(--gold);
  border-color: var(--border-gold);
  background: var(--gold-glow);
}
.filter-chip.active { color: #1A1530;
  background: var(--gradient-gold);
  border-color: transparent;
}
.filter-chip i { font-size: 14px;
}
.search-bar__submit { flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--gradient-gold);
  color: #1A1530;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px var(--gold-glow-strong);
  transition: all var(--transition-fast);
}
.search-bar__submit:hover { transform: scale(1.06);
  box-shadow: 0 4px 20px var(--gold-glow-strong);
}
.search-bar__submit i { font-size: 18px;
}
.search-tags { display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-md);
  animation: fadeInUp 0.8s ease 0.5s both;
}
.search-tag { padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.search-tag:hover { color: var(--text-primary);
  border-color: var(--text-tertiary);
}
.servers-section { padding: var(--space-3xl) var(--space-lg) var(--space-4xl);
}
.section-header { display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}
.section-header__left h2 { font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.section-header__left p { font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}
.section-header__right { display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.sort-select { padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B90A8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.sort-select:focus { border-color: var(--gold);
  outline: none;
}
.server-list { display: flex;
  flex-direction: column;
  gap: 10px;
}
.server-row { display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--space-lg);
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit !important;
}
.server-row::before { content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  pointer-events: none;
}
.server-row:hover { border-color: rgba(255, 255, 255, 0.1);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
[data-theme="light"] .server-row:hover { border-color: rgba(0, 0, 0, 0.1);
}
@keyframes premiumBgGlow { 0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.server-row.premium { border-color: var(--border-gold, var(--gold-glow-strong));
  background: linear-gradient(135deg, var(--bg-card) 20%, var(--bg-premium-tint, rgba(212, 175, 55, 0.12)) 50%, var(--bg-card) 80%) !important;
  background-size: 200% 200% !important;
  animation: premiumBgGlow 8s ease infinite !important;
}
.server-row.premium::after { content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--border-gold, rgba(212, 168, 83, 0.3)), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.server-row.premium:hover { box-shadow: var(--shadow-md), 0 0 30px var(--gold-glow);
}
.server-row__premium-badge { position: absolute;
  top: 8px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.server-row__premium-badge i { font-size: 13px;
}
.server-row__identity { display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.server-row__logo { width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  overflow: hidden;
}
.server-row__logo img { width: 100%;
  height: 100%;
  object-fit: cover;
}
.server-row__info { min-width: 0;
}
.server-row__name { display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 0;
}
.server-row__name-text { white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.server-row__meta { display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
}
.server-meta-item { display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-tertiary);
  font-weight: 500;
}
.server-meta-item i { font-size: 13px;
}
.server-meta-item--url { color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}
.server-meta-item--url i { color: var(--gold);
  font-size: 12px;
}
.server-meta-item--beta { color: #c084fc;
  background: rgba(192, 132, 252, 0.1);
  border: 1px solid rgba(192, 132, 252, 0.25);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}
.server-meta-item--launch { color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.25);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}
.server-meta-sep { color: var(--border);
  font-size: 10px;
  opacity: 0.6;
}
.server-row__badges { display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.badge { display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.badge--cap { background: rgba(79, 125, 245, 0.12);
  color: var(--accent);
  border: 1px solid rgba(79, 125, 245, 0.15);
}
.badge--race { background: rgba(168, 85, 247, 0.12);
  color: #A855F7;
  border: 1px solid rgba(168, 85, 247, 0.15);
}
.badge--exp { background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.badge--new { background: rgba(52, 211, 153, 0.12);
  color: var(--online-green);
  border: 1px solid rgba(52, 211, 153, 0.15);
}
.server-row__online { display: flex;
  align-items: center;
  gap: 8px;
  min-width: 100px;
}
.online-dot { width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--online-green);
  animation: pulseGlow 2s infinite;
  flex-shrink: 0;
}
.online-count { font-size: 14px;
  font-weight: 700;
  color: var(--online-green);
}
.online-label { font-size: 11px;
  color: var(--text-tertiary);
}
.server-row__action { flex-shrink: 0;
}
.btn--view { display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}
.btn--view i { font-size: 14px;
  transition: transform var(--transition-base);
}
.btn--view:hover i { transform: translateX(3px);
}
[data-theme="light"] .btn--view { background: rgba(0, 0, 0, 0.03);
}
.btn--view:hover { color: var(--gold);
  border-color: var(--border-gold);
  background: var(--gold-glow);
}
.server-row.premium .btn--view { color: var(--gold);
  border-color: var(--border-gold);
}
.server-row.premium .btn--view:hover { background: var(--gold-glow) !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 4px 16px var(--gold-glow) !important;
}
.banner-grid { display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: var(--container-wide);
  margin: 0 auto;
}
.banner-slot { position: relative;
  display: block;
  height: 90px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
}
.banner-slot:hover { border-color: var(--border-gold);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-1px);
}
.banner-slot__img { width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner-slot--empty { display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-style: dashed;
  cursor: default;
}
.banner-slot--empty:hover { transform: none;
  box-shadow: none;
  border-color: var(--border-gold);
}
.banner-slot__placeholder { display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-tertiary);
}
.banner-slot__placeholder i { font-size: 22px;
  opacity: 0.3;
  color: var(--gold);
}
.banner-slot__placeholder-text { display: flex;
  flex-direction: column;
  gap: 1px;
}
.banner-slot__placeholder-title { font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.3px;
}
.banner-slot__placeholder-cta { font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  opacity: 0.7;
}
.cta-row { display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.04) 0%, rgba(79, 125, 245, 0.03) 100%);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
}
.cta-row:hover { background: linear-gradient(135deg, rgba(212, 168, 83, 0.08) 0%, rgba(79, 125, 245, 0.05) 100%);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}
.cta-row__icon { font-size: 28px;
  flex-shrink: 0;
}
.cta-row__content { display: flex;
  flex-direction: column;
  gap: 2px;
}
.cta-row__title { font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}
.cta-row__desc { font-size: 12px;
  color: var(--text-tertiary);
}
.cta-row__btn { display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  color: #1A1530;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px var(--gold-glow-strong);
  flex-shrink: 0;
  transition: all var(--transition-fast);
  letter-spacing: 0.3px;
}
.cta-row:hover .cta-row__btn { box-shadow: 0 4px 20px var(--gold-glow-strong);
  transform: translateY(-1px);
}
.ad-banner { position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, rgba(212, 168, 83, 0.02) 100%);
  overflow: hidden;
  transition: border-color var(--transition-base);
}
.ad-banner:hover { border-color: var(--border-gold);
}
.ad-banner--sidebar { width: 100%;
  height: 250px;
}
.ad-banner__inner { display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-tertiary);
}
.ad-banner__icon { font-size: 28px;
  opacity: 0.4;
  color: var(--gold);
}
.ad-banner__text { display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.ad-banner__title { font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
}
.ad-banner__size { font-size: 11px;
  color: var(--text-tertiary);
  opacity: 0.6;
}
.ad-banner__label { position: absolute;
  top: 6px;
  right: 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-tertiary);
  opacity: 0.5;
}
.upcoming-section { padding: var(--space-xl) var(--space-lg) var(--space-lg);
}
.upcoming-slider-nav { display: flex;
  gap: 6px;
}
.upcoming-nav-btn { width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.upcoming-nav-btn:hover { color: var(--gold);
  border-color: var(--border-gold);
  background: var(--gold-glow);
}
.upcoming-nav-btn:disabled { opacity: 0.3;
  pointer-events: none;
}
.upcoming-slider { overflow: hidden;
  border-radius: var(--radius-lg);
}
.upcoming-grid { display: flex;
  gap: var(--space-md);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.upcoming-card { position: relative;
  flex: 0 0 calc((100% - 2 * var(--space-md)) / 3);
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.upcoming-card::before { content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(212, 168, 83, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.upcoming-card::after { content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.3), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.upcoming-card:hover { transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 24px var(--gold-glow);
}
.upcoming-card__header { display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.upcoming-card__avatar { width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}
.upcoming-card__info { min-width: 0;
}
.upcoming-card__name { font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.upcoming-card__meta { font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 1px;
}
.upcoming-card__badges { display: none;
}
.upcoming-card__countdown { position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.countdown-unit { display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 36px;
}
.countdown-unit__value { font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  min-width: 30px;
  text-align: center;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: var(--radius-sm);
  padding: 4px 5px;
}
.countdown-unit__label { font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-tertiary);
  margin-top: 2px;
}
.countdown-separator { font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  align-self: flex-start;
  padding-top: 4px;
}
.upcoming-card__launched { display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--online-green);
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}
.upcoming-card__launched i { font-size: 16px;
}
.upcoming-card__status-badge { position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--warning);
  flex-shrink: 0;
}
.upcoming-card__status-badge .status-dot { width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warning);
  animation: pulseGlowOrange 2s infinite;
}
@keyframes pulseGlowOrange { 0%,
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5);
}
  50% { box-shadow: 0 0 0 6px rgba(251, 191, 36, 0);
}
}
.status-badge { display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.status-badge--online { background: rgba(52, 211, 153, 0.1);
  color: var(--online-green);
  border: 1px solid rgba(52, 211, 153, 0.2);
}
.status-badge--online .status-dot { width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--online-green);
  animation: pulseGlow 2s infinite;
  flex-shrink: 0;
}
.status-badge--offline { background: rgba(248, 113, 113, 0.1);
  color: var(--danger);
  border: 1px solid rgba(248, 113, 113, 0.2);
}
.status-badge--offline .status-dot { width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
  flex-shrink: 0;
}
.status-badge--opening-soon,
.status-badge--upcoming { background: rgba(251, 191, 36, 0.1);
  color: var(--warning);
  border: 1px solid rgba(251, 191, 36, 0.2);
}
.status-badge--opening-soon .status-dot,
.status-badge--upcoming .status-dot { width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warning);
  animation: pulseGlowOrange 2s infinite;
  flex-shrink: 0;
}
.status-badge--closed { background: rgba(156, 163, 175, 0.1);
  color: #9ca3af;
  border: 1px solid rgba(156, 163, 175, 0.2);
}
.status-badge--closed .status-dot { width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ca3af;
  flex-shrink: 0;
}
.status-badge--pending { background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.status-badge--pending .status-dot { width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  animation: pulseGlowOrange 2s infinite;
  flex-shrink: 0;
}
.status-badge--rejected { background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.status-badge--rejected .status-dot { width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
}
.status-badge--draft { background: rgba(100, 116, 139, 0.1);
  color: #94a3b8;
  border: 1px solid rgba(100, 116, 139, 0.2);
}
.status-badge--draft .status-dot { width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;
  flex-shrink: 0;
}
.status-badge--hidden { background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.2);
}
.status-badge--hidden .status-dot { width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a855f7;
  flex-shrink: 0;
}
.server-row.promoted { background: linear-gradient(to right, var(--bg-card), rgba(255, 251, 235, 0.04));
  border-color: var(--border-gold);
}
[data-theme="light"] .server-row.promoted { background: linear-gradient(to right, #ffffff, #fffbeb);
}
.server-row.promoted::after { content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.35), transparent 55%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.server-row.promoted:hover { box-shadow: var(--shadow-md), 0 0 30px var(--gold-glow);
}
.server-row__promoted-badge { position: absolute;
  top: 8px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 800;
  color: #1A1530;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  box-shadow: 0 2px 8px var(--gold-glow-strong);
}
.server-row__promoted-badge i { font-size: 11px;
}
.footer { border-top: 1px solid var(--border);
  padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  margin-top: var(--space-4xl);
}
.footer__inner { max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--space-2xl);
}
.footer__brand { max-width: 260px;
}
.footer__brand-logo { display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
}
.footer__brand-logo .logo-icon { width: 32px;
  height: 32px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: #1A1530;
}
.footer__brand-logo .logo-text { font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer__brand-logo .logo-text span { color: var(--gold);
}
.footer__brand p { font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.7;
}
.footer__column h4 { font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-tertiary);
  margin-bottom: var(--space-md);
}
.footer__column ul { display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__column a { font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.footer__column a:hover { color: var(--gold);
}
.footer__bottom { max-width: var(--container-max);
  margin: var(--space-2xl) auto 0;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer__copyright { font-size: 12px;
  color: var(--text-tertiary);
}
.footer__socials { display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.footer__social-link { width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: all var(--transition-fast);
}
.footer__social-link:hover { color: var(--gold);
  border-color: var(--border-gold);
  background: var(--gold-glow);
}
.footer__social-link i { font-size: 18px;
}
@keyframes fadeInUp { from { opacity: 0;
  transform: translateY(24px);
}
  to { opacity: 1;
  transform: translateY(0);
}
}
@keyframes fadeIn { from { opacity: 0;
}
  to { opacity: 1;
}
}
@keyframes pulseGlow { 0%,
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
}
  50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0);
}
}
@keyframes shimmer { 0% { left: -100%;
}
  100% { left: 100%;
}
}
@keyframes float { 0%,
  100% { transform: translateY(0);
}
  50% { transform: translateY(-6px);
}
}
.animate-fadeInUp { animation: fadeInUp 0.6s ease both;
}
.stagger>*:nth-child(1) { animation-delay: 0ms;
}
.stagger>*:nth-child(2) { animation-delay: 50ms;
}
.stagger>*:nth-child(3) { animation-delay: 100ms;
}
.stagger>*:nth-child(4) { animation-delay: 150ms;
}
.stagger>*:nth-child(5) { animation-delay: 200ms;
}
.stagger>*:nth-child(6) { animation-delay: 250ms;
}
.stagger>*:nth-child(7) { animation-delay: 300ms;
}
.stagger>*:nth-child(8) { animation-delay: 350ms;
}
::-webkit-scrollbar { width: 6px;
}
::-webkit-scrollbar-track { background: var(--bg-body);
}
::-webkit-scrollbar-thumb { background: var(--border);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--text-tertiary);
}
@media (max-width: 1024px) { .hero__columns { grid-template-columns: 1fr;
}
  .hero__ad-column { display: none;
}
  .upcoming-card { flex: 0 0 calc((100% - var(--space-md)) / 2);
}
  .footer__inner { grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 768px) { html, body { overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}
  header, nav, .navbar, .container, .hero, .search-section, .server-list-container { max-width: 100% !important;
  box-sizing: border-box !important;
}
  :root { --nav-height: 60px;
}
  .navbar__links { display: none !important;
}
  .navbar__inner { padding: 0 10px;
}
  .navbar__actions { gap: 6px !important;
}
  .navbar__actions .btn--ghost,
  .navbar__actions .btn--primary { display: none;
}
  .lang-switcher { display: inline-block !important;
}
  .lang-switcher__btn { padding: 4px 8px !important;
  font-size: 11.5px !important;
  height: 32px !important;
  border-radius: 8px !important;
}
  .theme-toggle { display: inline-flex !important;
  width: 32px !important;
  height: 32px !important;
}
  .notification-dropdown { margin-right: 0 !important;
}
  .notification-dropdown button#notification-btn { width: 32px !important;
  height: 32px !important;
}
  #notification-menu { position: fixed !important;
  top: calc(var(--header-height) + 4px) !important;
  left: 12px !important;
  right: 12px !important;
  width: auto !important;
  max-width: none !important;
  z-index: 99999 !important;
}
  .user-nav-dropdown { display: none !important;
}
  .navbar__hamburger { display: flex !important;
}
  .navbar__mobile-menu { display: flex !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: calc(100vh - 100%) !important;
  min-height: calc(100vh - 60px) !important;
  background: var(--bg-body) !important;
  padding: 16px 16px 36px !important;
  box-sizing: border-box !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 999999 !important;
  overflow-y: auto !important;
  border: none !important;
  border-top: 1px solid var(--border) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}
  .navbar__mobile-menu.open,
  .navbar__mobile-menu.active { opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
  .navbar__hamburger.open span:nth-child(1),
  .navbar__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg);
}
  .navbar__hamburger.open span:nth-child(2),
  .navbar__hamburger.active span:nth-child(2) { opacity: 0;
}
  .navbar__hamburger.open span:nth-child(3),
  .navbar__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg);
}
  .mobile-user-card { background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
  .mobile-lang-bar { display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 14px;
  width: 100%;
}
  .mobile-lang-btn { flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 0;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 11.5px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}
  .mobile-lang-btn.active { background: var(--gold-glow);
  border-color: var(--border-gold);
  color: var(--gold);
}
  .mobile-user-card__top { display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
  .mobile-user-card__avatar { width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
}
  .mobile-user-card__info h4 { font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 2px 0;
}
  .mobile-user-card__info p { font-size: 12px;
  color: var(--gold);
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
  .mobile-user-card__links { display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
  .mobile-user-card__btn { display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
  .mobile-user-card__btn i { color: var(--gold);
  font-size: 15px;
}
  .mobile-nav-group { display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
  .mobile-nav-item { display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}
  .mobile-nav-item i { font-size: 20px;
  color: var(--gold);
  width: 24px;
  text-align: center;
}
  .mobile-nav-item.active { background: var(--gold-glow);
  border-color: var(--border-gold);
  color: var(--gold);
}
  .mobile-drawer-footer { display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
  .hero { padding-top: 24px;
  overflow: visible;
}
  .hero__top-banner { max-width: 100%;
}
  .hero-banner--top { height: 70px;
}
  .hero__stats { gap: var(--space-lg);
}
  .hero__stat-value { font-size: 22px;
}
  .search-bar { position: relative;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
}
  .search-bar__input { padding-right: 8px !important;
}
  .search-bar__filters { width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  padding-top: 8px !important;
  border-top: 1px solid var(--border) !important;
  margin-top: 6px !important;
  gap: 8px !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}
  .filter-dropdown-container { flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
}
  .filter-chip { height: 34px !important;
  padding: 0 12px !important;
  font-size: 11.5px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  box-sizing: border-box !important;
}
  .search-bar__submit { position: static !important;
  margin-left: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  align-self: center !important;
}
  .servers-section { padding: 20px 10px 40px !important;
  max-width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
  .servers-section .container { padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}
  .section-header { padding: 12px 14px !important;
  margin-bottom: 16px !important;
  border-radius: 14px !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 10px !important;
}
  .section-header__left { display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
}
  .section-header__left > div:first-child { width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  flex-shrink: 0 !important;
}
  .section-header__left > div:first-child i { font-size: 15px !important;
}
  .section-header__left > div:last-child { flex: 1 !important;
  min-width: 0 !important;
}
  .section-header__left h2 { font-size: 14px !important;
  letter-spacing: 0.3px !important;
  line-height: 1.25 !important;
  margin: 0 0 2px 0 !important;
  white-space: normal !important;
  word-break: normal !important;
}
  .section-header__left p { font-size: 11.5px !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  white-space: normal !important;
  word-break: normal !important;
  color: var(--text-tertiary) !important;
}
  .section-header__right { width: 100% !important;
}
  .sort-select { width: 100% !important;
  padding: 6px 30px 6px 12px !important;
  font-size: 11.5px !important;
  height: 34px !important;
  box-sizing: border-box !important;
}
  .server-row { display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  padding: 14px !important;
  gap: 10px !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
  .server-row__identity { width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}
  .server-row__info { flex: 1 !important;
  min-width: 0 !important;
  max-width: calc(100% - 60px) !important;
  overflow: hidden !important;
}
  .server-row__name { max-width: 100% !important;
  overflow: hidden !important;
}
  .server-row__name-text { max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
  .server-row__meta { flex-wrap: wrap !important;
  max-width: 100% !important;
  gap: 6px !important;
}
  .server-row__badges { width: 100% !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
}
  .badge { padding: 2.5px 7px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  letter-spacing: 0.2px !important;
}
  .card_badge { padding: 2px 6px !important;
  font-size: 9px !important;
  border-radius: 4px !important;
}
  .search-tag { padding: 4px 10px !important;
  font-size: 11px !important;
  border-radius: 20px !important;
}
  .server-row__action { width: 100% !important;
  margin-top: 4px !important;
}
  .server-row__action .btn--view { width: 100% !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}
  .upcoming-card { flex: 0 0 100%;
}
  .banner-grid { grid-template-columns: 1fr;
}
  .banner-slot { height: 70px;
}
  .cta-row { flex-direction: column;
  text-align: center;
  padding: 16px;
}
  .ticker__item { font-size: 12px;
  padding: 0 20px;
}
  .footer__inner { grid-template-columns: 1fr;
  gap: var(--space-xl);
}
  .footer__bottom { flex-direction: column;
  text-align: center;
}
}
@media (max-width: 480px) { .hero__title { font-size: 36px;
}
  .hero__stats { flex-direction: column;
  gap: var(--space-md);
}
  .section-header { flex-direction: column;
  align-items: flex-start;
}
}
.filter-dropdown-container { position: relative;
}
.filter-dropdown { position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  transition: all var(--transition-base);
  min-width: 160px;
  overflow-y: auto;
  max-height: 240px;
  backdrop-filter: blur(16px);
}
.filter-dropdown::-webkit-scrollbar { width: 5px;
}
.filter-dropdown::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02);
}
.filter-dropdown::-webkit-scrollbar-thumb { background: rgba(184, 136, 46, 0.3);
  border-radius: 4px;
}
.filter-dropdown::-webkit-scrollbar-thumb:hover { background: rgba(184, 136, 46, 0.5);
}
.filter-dropdown-container.active .filter-dropdown { opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.filter-dropdown__option { padding: 10px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}
.filter-dropdown__option:hover { background: rgba(212, 168, 83, 0.08);
  color: var(--gold);
}
.filter-caret { font-size: 10px;
  transition: transform var(--transition-fast);
}
.filter-dropdown-container.active .filter-caret { transform: rotate(180deg);
}
.rankings-section { padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-surface) 100%);
  border-top: 1px solid var(--border);
}
.ranking-tabs { display: flex;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.02);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.ranking-tab-btn { padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.ranking-tab-btn.active { background: var(--gold-glow);
  color: var(--gold);
}
.ranking-card { background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}
.ranking-table-wrapper { overflow-x: auto;
}
.ranking-table { width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.ranking-table th { padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}
.ranking-table td { padding: 16px;
  font-size: 14px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}
.ranking-table tbody tr:hover { background: rgba(255, 255, 255, 0.01);
}
.rank-badge { display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
}
.rank-badge--1 { background: linear-gradient(135deg, #FFE259 0%, #FFA751 100%);
  color: #1A1530;
}
.rank-badge--2 { background: linear-gradient(135deg, #E6E6E6 0%, #999999 100%);
  color: #1A1530;
}
.rank-badge--3 { background: linear-gradient(135deg, #D7A15C 0%, #96632B 100%);
  color: #1A1530;
}
.rank-player { display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.highlight-gold { color: var(--gold);
  font-weight: 700;
}
.guides-section { padding: var(--space-2xl) 0;
  background: var(--bg-body);
}
.forum-layout { display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-xl);
  align-items: start;
}
.forum-filter-bar { display: flex;
  gap: 4px;
  margin-bottom: 20px;
  padding: 5px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  box-shadow: 0 2px 12px -2px rgba(0, 0, 0, 0.04);
}
.forum-filter-btn { position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.forum-filter-btn i { font-size: 16px;
  transition: transform 0.25s ease, color 0.25s ease;
}
.forum-filter-btn:hover { color: var(--text-primary);
  background: var(--bg-card);
}
.forum-filter-btn:hover i { transform: scale(1.12);
}
.forum-filter-btn.active { color: var(--gold);
  background: var(--bg-card);
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.forum-filter-btn.active::after { content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
}
.forum-filter-btn.active i { color: var(--gold);
}
.forum-filter-btn--question:not(.active):hover { color: #a78bfa;
  background: rgba(124, 58, 237, 0.05);
}
  .forum-filter-btn--question:not(.active):hover i { color: #a78bfa; }
.forum-filter-btn--share:not(.active):hover { color: var(--accent);
  background: rgba(79, 125, 245, 0.05);
}
  .forum-filter-btn--share:not(.active):hover i { color: var(--accent); }
.forum-filter-btn--discussion:not(.active):hover { color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}
  .forum-filter-btn--discussion:not(.active):hover i { color: var(--gold); }
.forum-filter-btn--service:not(.active):hover { color: #22c55e;
  background: rgba(34, 197, 94, 0.05);
}
  .forum-filter-btn--service:not(.active):hover i { color: #22c55e; }
.forum-filter-btn--trade:not(.active):hover { color: #f59e0b;
  background: rgba(245, 158, 11, 0.05);
}
  .forum-filter-btn--trade:not(.active):hover i { color: #f59e0b; }
  .forum-filter-btn--question.active { color: #a78bfa; }
  .forum-filter-btn--question.active i { color: #a78bfa; }
  .forum-filter-btn--question.active::after { background: #a78bfa; }
  .forum-filter-btn--share.active { color: var(--accent); }
  .forum-filter-btn--share.active i { color: var(--accent); }
  .forum-filter-btn--share.active::after { background: var(--accent); }
  .forum-filter-btn--discussion.active { color: var(--gold); }
  .forum-filter-btn--discussion.active i { color: var(--gold); }
  .forum-filter-btn--discussion.active::after { background: var(--gold); }
  .forum-filter-btn--service.active { color: #22c55e; }
  .forum-filter-btn--service.active i { color: #22c55e; }
  .forum-filter-btn--service.active::after { background: #22c55e; }
  .forum-filter-btn--trade.active { color: #f59e0b; }
  .forum-filter-btn--trade.active i { color: #f59e0b; }
  .forum-filter-btn--trade.active::after { background: #f59e0b; }
.forum-filter-btn--guide:not(.active):hover { color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}
  .forum-filter-btn--guide:not(.active):hover i { color: var(--gold); }
  .forum-filter-btn--guide.active { color: var(--gold); }
  .forum-filter-btn--guide.active i { color: var(--gold); }
  .forum-filter-btn--guide.active::after { background: var(--gold); }
.btn-new-topic-sleek { display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.btn-new-topic-sleek i { font-size: 15px;
  color: var(--gold);
  transition: transform var(--transition-fast), color var(--transition-fast);
}
.btn-new-topic-sleek:hover { background: var(--gradient-gold);
  color: #1A1530 !important;
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--gold-glow);
  transform: translateY(-1px);
}
.btn-new-topic-sleek:hover i { color: #1A1530 !important;
  transform: rotate(90deg);
}
.thread-list { display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.thread-card { display: flex;
  gap: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 16px;
  transition: all var(--transition-base);
  position: relative;
  box-shadow: 0 4px 16px rgba(33, 30, 24, 0.02);
  align-items: center;
}
.thread-card:hover { border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.06), 0 3px 10px rgba(0, 0, 0, 0.01);
}
.thread-card__votes { display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 40px;
  background: rgba(0, 0, 0, 0.015);
  border-radius: var(--radius-md);
  padding: 6px 4px;
  justify-content: center;
  align-self: center;
  position: relative;
  z-index: 2;
}
.vote-btn { color: var(--text-tertiary);
  font-size: 20px;
  transition: all var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vote-btn:hover { color: var(--gold);
  transform: scale(1.15);
}
.vote-count { font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.thread-card__main { flex: 1;
}
.thread-card__meta { display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-xs);
  flex-wrap: wrap;
}
.thread-badge { font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}
.thread-badge--guide { background: rgba(212, 168, 83, 0.08);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.22);
}
.thread-badge--share { background: rgba(79, 125, 245, 0.08);
  color: var(--accent);
  border: 1px solid rgba(79, 125, 245, 0.22);
}
.thread-badge--question { background: rgba(124, 58, 237, 0.08);
  color: #a78bfa;
  border: 1px solid rgba(124, 58, 237, 0.22);
}
.thread-badge--general,
.thread-badge--discussion { background: rgba(139, 144, 168, 0.08);
  color: var(--text-secondary);
  border: 1px solid rgba(139, 144, 168, 0.22);
}
.thread-badge--solved { background: rgba(46, 204, 113, 0.12);
  color: var(--online-green);
  border: 1px solid rgba(46, 204, 113, 0.2);
}
.thread-author { font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
}
.thread-date { font-size: 11px;
  color: var(--text-tertiary);
}
.thread-card__title { font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
  letter-spacing: 0.1px;
}
.thread-card__title a { color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.thread-card__title a::after { content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.thread-card:hover .thread-card__title a,
.thread-card__title a:hover { color: var(--gold);
}
.thread-card__excerpt { font-size: 12.5px;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.thread-card__right-stats { display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.thread-right-stat { display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  background: rgba(0, 0, 0, 0.02);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.01);
  white-space: nowrap;
}
.forum-sidebar { display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.forum-sidebar-card { background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 4px 16px rgba(33, 30, 24, 0.015);
}
.forum-sidebar-card__title { font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 10px;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}
.sidebar-hub-list { display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.sidebar-hub-item { display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 10px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-base);
  text-decoration: none;
  color: var(--text-primary);
}
.sidebar-hub-item:hover { background: rgba(212, 175, 55, 0.03);
  border-color: rgba(212, 175, 55, 0.1);
  transform: translateX(4px);
}
.hub-avatar { width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.hub-info { flex: 1;
}
.hub-name { font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.hub-meta { font-size: 11px;
  color: var(--text-tertiary);
}
.sidebar-tags { display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sidebar-tag { font-size: 12px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.sidebar-tag:hover { border-color: var(--border-gold);
  color: var(--gold);
  background: var(--gold-glow);
}
@media (max-width: 992px) { .forum-layout { grid-template-columns: 1fr;
}
  .forum-filter-bar { gap: 4px;
  padding: 5px;
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
  .forum-filter-bar::-webkit-scrollbar { display: none;
}
  .forum-filter-btn { padding: 8px 14px;
  font-size: 12px;
}
}
.latest-community-section { padding: var(--space-2xl) 0;
  background: var(--bg-body);
  border-top: 1px solid var(--border);
}
.latest-threads-grid { display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.latest-thread-card { position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.02), 0 2px 6px -1px rgba(0, 0, 0, 0.01);
}
.latest-thread-card::before { content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scaleX(0.7);
}
.latest-thread-card:hover::before { opacity: 1;
  transform: scaleX(1);
}
.latest-thread-card:hover { border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px -4px rgba(212, 168, 83, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.02);
}
.latest-thread-card__header { display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.latest-thread-card__date { font-size: 11.5px;
  color: var(--text-tertiary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.latest-thread-card__date::before { content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--border-gold);
  opacity: 0.6;
}
.latest-thread-card__title { font-size: 16.5px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.45;
  margin-top: 12px;
  margin-bottom: 20px;
  flex-grow: 1;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-thread-card:hover .latest-thread-card__title { color: var(--gold);
}
.latest-thread-card__footer { display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 500;
}
.latest-thread-card__author { display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
}
.latest-thread-card__author i { color: var(--gold);
  font-size: 15px;
}
.latest-thread-card__author .rep-badge { background: rgba(212, 168, 83, 0.06);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.18);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 2px;
}
.latest-thread-card__replies { display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}
.latest-thread-card:hover .latest-thread-card__replies { color: var(--gold);
}
.back-to-community { display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: var(--space-lg);
  transition: color var(--transition-fast);
}
.back-to-community:hover { color: var(--gold);
}
.post-layout { display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 992px) { .post-layout { grid-template-columns: 1fr;
}
}
.post-main { display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.post-header-card { background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-sm);
}
.post-header-meta { display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.post-header-date { font-size: 12px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-title { font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: var(--space-md);
}
.post-author-row { display: flex;
  align-items: center;
  gap: var(--space-md);
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-md);
}
.author-avatar { width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.author-details { display: flex;
  flex-direction: column;
  gap: 2px;
}
.author-name { font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.author-rep { font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-stats-right { margin-left: auto;
  display: flex;
  gap: var(--space-lg);
}
.post-stat-item { font-size: 12px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-content-card { background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 15px;
}
.post-content-card p { margin-bottom: var(--space-lg);
}
.post-content-card h3 { font-family: var(--font-display);
  color: var(--text-primary);
  font-size: 18px;
  margin: var(--space-xl) 0 var(--space-md);
}
.post-content-card ul { margin: 0 0 var(--space-lg) var(--space-xl);
}
.post-content-card li { margin-bottom: var(--space-xs);
}
.info-note-box { background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-primary);
}
.post-actions-bar { display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-lg);
}
.post-vote-buttons { display: flex;
  align-items: center;
  gap: var(--space-md);
}
.post-action-btn { display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.25) !important;
  color: var(--text-secondary) !important;
  padding: 6px 14px !important;
  border-radius: var(--radius-full) !important;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.post-action-btn:hover { border-color: var(--gold) !important;
  background: rgba(212, 175, 55, 0.03) !important;
}
.post-action-btn--active { color: var(--gold) !important;
  border-color: var(--gold) !important;
  background: rgba(212, 175, 55, 0.08) !important;
  font-weight: 700 !important;
}
.thread-vote-value { font-size: 14px;
  font-weight: 600;
}
.comments-section { display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.comments-header h2 { font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-primary);
}
.comment-form-card { background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}
.comment-form-header { display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-size: 13px;
}
.active-user-info { color: var(--text-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.replying-to-indicator { background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cancel-reply-btn { background: transparent;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
.cancel-reply-btn:hover { color: #ff4a4a;
}
.comment-textarea { width: 100%;
  min-height: 100px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  outline: none;
  transition: border-color var(--transition-fast);
}
.comment-textarea:focus { border-color: var(--gold);
}
.comment-form-footer { display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
}
.form-tip { font-size: 11px;
  color: var(--text-tertiary);
}
.comments-list { display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.comment-card { display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  gap: var(--space-md);
  position: relative;
  transition: border-color var(--transition-fast);
}
.comment-card:hover { border-color: rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.06);
  transform: translateY(-0.5px);
}
.comment-card--reply { margin-left: var(--space-2xl);
}
.comment-card--reply::before { content: '';
  position: absolute;
  left: -28px;
  top: -20px;
  width: 20px;
  height: calc(100% + 20px);
  border-left: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  border-bottom-left-radius: var(--radius-md);
}
.comment-card--reply:last-child::before { height: 48px;
}
@media (max-width: 576px) { .comment-card--reply { margin-left: var(--space-md);
}
  .comment-card--reply::before { display: none;
}
}
.comment-votes { display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}
.c-vote-btn { background: transparent;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
}
.c-vote-btn:hover { color: var(--gold);
}
.c-vote-count { font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}
.comment-main { display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}
.comment-meta { display: flex;
  gap: var(--space-md);
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
}
.comment-author { color: var(--text-primary);
  font-weight: 600;
}
.comment-text-content { font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.comment-actions { display: flex;
  gap: var(--space-md);
  margin-top: 4px;
}
.comment-action-link { background: transparent;
  border: none;
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color var(--transition-fast);
}
.comment-action-link:hover { color: var(--gold);
}
.comment-quote { background: var(--bg-primary);
  border-left: 3px solid var(--gold);
  padding: 8px 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}
.post-sidebar-card { background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.post-sidebar-card__title { font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sidebar-author-profile { display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xs) 0;
}
.profile-avatar { width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: 0 0 15px var(--gold-glow);
}
.profile-name { font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}
.profile-joined { font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: var(--space-lg);
}
.profile-stats { display: flex;
  gap: var(--space-xl);
  width: 100%;
  justify-content: center;
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-md);
}
.p-stat { display: flex;
  flex-direction: column;
  align-items: center;
}
.p-stat-val { font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.p-stat-lbl { font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
}
.related-threads-list { display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.related-thread-item { display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: var(--space-sm);
}
.related-thread-item:last-child { border-bottom: none;
  padding-bottom: 0;
}
.related-title { color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition-fast);
  line-height: 1.4;
}
.related-thread-item:hover .related-title { color: var(--gold);
}
.related-replies { font-size: 11px;
  color: var(--text-tertiary);
}
.post-sidebar-card--ad { padding: 0 !important;
  overflow: hidden;
  border-color: var(--border-gold-dim);
}
.ad-title { background: var(--bg-elevated);
  color: var(--text-tertiary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-ad-banner { display: flex;
  height: 120px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 31, 51, 0.95) 100%);
  position: relative;
  text-decoration: none;
  align-items: flex-end;
  padding: var(--space-md);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}
.sidebar-ad-banner:hover { transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
}
.sidebar-ad-banner::before { content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M0 0h30v30H0zm30 30h30v30H30z" fill="%23d4af37" fill-opacity=".02"/></svg>');
}
.ad-badge { position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}
.ad-server-info { display: flex;
  flex-direction: column;
  z-index: 2;
}
.sidebar-ad-banner .ad-server-name { color: #FFFFFF !important;
  font-weight: 700;
  font-size: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 2px;
}
.sidebar-ad-banner .ad-server-meta { color: var(--gold) !important;
  font-size: 12px;
  font-weight: 600;
}
.rich-editor { display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.rich-editor:focus-within { border-color: var(--border-gold-dim);
}
.rich-editor__toolbar { display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  padding: 6px 12px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}
.rich-editor__btn { display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 13.5px;
  transition: all var(--transition-fast);
}
.rich-editor__btn:hover { background: var(--border-light);
  color: var(--gold);
}
.rich-editor textarea.comment-textarea { border: none !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  background: transparent !important;
}
.comment-quote { background: var(--bg-primary);
  border-left: 3px solid var(--gold-dim);
  padding: 10px 14px;
  margin: var(--space-sm) 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 13.5px;
}
.comment-quote cite { display: block;
  font-weight: 700;
  font-style: normal;
  color: var(--gold);
  margin-bottom: 4px;
  font-size: 11.5px;
}
.comment-link { color: var(--blue-bright) !important;
  text-decoration: underline;
}
.comment-link:hover { color: var(--gold) !important;
}
.comment-code { background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  font-family: monospace;
  font-size: 13px;
  color: var(--text-primary);
  overflow-x: auto;
  margin: var(--space-sm) 0;
}
.comment-container--nested { position: relative;
  border-left: 2px solid var(--border-gold);
  border-radius: 0;
  transition: border-color var(--transition-fast);
}
.comment-container--nested:hover { border-left-color: var(--gold);
}
.comment-container--nested .comment-card--reply { margin-left: 0;
  border-radius: var(--radius-lg);
}
.comment-quote-block { background: var(--bg-primary);
  padding: 10px 14px;
  margin-bottom: 12px;
  font-size: 12.5px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  box-shadow: inset 2px 0 8px rgba(0, 0, 0, 0.02);
}
.comment-quote-block .quote-author { font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
  font-size: 11.5px;
}
.comment-quote-block .quote-author i { color: var(--gold);
  margin-right: 4px;
}
.comment-quote-block .quote-text { color: var(--text-secondary);
  font-style: italic;
  line-height: 1.4;
}
.comment-container--nested .comment-card--reply::before { display: none;
}
.auth-modal-overlay { --bg-body: #0B0E17;
  --bg-primary: #12162A;
  --bg-card: #12162A;
  --bg-card-hover: #1A1F3A;
  --bg-elevated: #161B33;
  --bg-input: #161B33;
  --bg-surface: #0F1225;
  --text-primary: #E8EAF0;
  --text-secondary: #8B90A8;
  --text-tertiary: #555B75;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.03);
  --border-gold: rgba(212, 168, 83, 0.25);
  --gold: #D4A853;
  --gold-light: #F0D48A;
  --gold-dark: #B8882E;
  --gold-glow: rgba(212, 168, 83, 0.2);
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(8, 10, 16, 0.75) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 100000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: var(--space-md) !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}
.auth-modal-overlay.active { opacity: 1;
  visibility: visible;
}
.auth-modal-card { background: rgba(22, 28, 45, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  padding: var(--space-xl);
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition-normal) cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.auth-modal-overlay.active .auth-modal-card { transform: translateY(0) scale(1);
}
.btn-google-signin:hover { background: var(--bg-surface) !important;
  border-color: var(--border-gold) !important;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}
.auth-modal-close { position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.auth-modal-close:hover { background: var(--bg-primary);
  color: var(--gold);
  transform: rotate(90deg);
}
.auth-modal-tabs { display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-lg);
  gap: var(--space-md);
}
.auth-modal-tab { background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}
.auth-modal-tab:hover { color: var(--text-primary);
}
.auth-modal-tab.active { color: var(--gold);
}
.auth-modal-tab.active::after { content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--gold-dim);
}
.auth-form { display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form-group { display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label { font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input-wrapper { position: relative;
  display: flex;
  align-items: center;
}
.form-input-icon { position: absolute;
  left: 14px;
  color: var(--text-tertiary);
  font-size: 18px;
  pointer-events: none;
  transition: color var(--transition-fast);
}
.form-input-wrapper .form-input { width: 100%;
  padding: 12px 14px 12px 42px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: all var(--transition-fast);
}
.form-input-wrapper .form-input::placeholder { color: var(--text-secondary);
  opacity: 0.5;
}
.form-input-wrapper .form-input:focus { border-color: var(--gold);
  box-shadow: 0 0 12px rgba(212, 168, 83, 0.15);
  outline: none;
}
.form-input-wrapper .form-input:focus+.form-input-icon { color: var(--gold);
}
.password-toggle { position: absolute;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: color var(--transition-fast);
}
.password-toggle:hover { color: var(--text-primary);
}
.auth-link { color: var(--gold);
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}
.auth-link:hover { color: var(--text-primary);
  text-decoration: underline;
}
.checkbox-container { display: block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 4px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
  user-select: none;
  line-height: 1.4;
}
.checkbox-container input { position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark { position: absolute;
  top: 1px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.checkbox-container:hover input~.checkmark { border-color: var(--gold-dim);
}
.checkbox-container input:checked~.checkmark { background-color: var(--gold);
  border-color: var(--gold);
}
.checkmark:after { content: "";
  position: absolute;
  display: none;
}
.checkbox-container input:checked~.checkmark:after { display: block;
}
.checkbox-container .checkmark:after { left: 6px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid var(--bg-card);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.btn--full { width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 14.5px;
}
@media (max-width: 480px) { .auth-modal-card { padding: var(--space-lg);
}
}
.toast-container { position: fixed !important;
  top: 24px !important;
  right: 24px !important;
  z-index: 100000 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: var(--space-md) !important;
  pointer-events: none !important;
  max-width: 420px !important;
  width: calc(100% - 48px) !important;
}
.toast { display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 16px 20px !important;
  background: rgba(22, 27, 46, 0.96) !important;
  border: 1px solid rgba(212, 168, 83, 0.2) !important;
  border-radius: 12px !important;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(212, 168, 83, 0.08) !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  transform: translateX(50px) scale(0.95) !important;
  opacity: 0 !important;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  position: relative !important;
  overflow: hidden !important;
}
.toast.show { transform: translateX(0) scale(1) !important;
  opacity: 1 !important;
}
.toast::after { content: '' !important;
  position: absolute !important;
  inset: -1px !important;
  border-radius: 12px !important;
  padding: 1px !important;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.45), transparent 50%) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  pointer-events: none !important;
}
.toast-shimmer { position: absolute !important;
  top: 0 !important;
  left: -150% !important;
  width: 80% !important;
  height: 100% !important;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(212, 168, 83, 0.15) 50%,
      rgba(255, 255, 255, 0) 100%) !important;
  transform: skewX(-30deg) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}
.toast.show .toast-shimmer { animation: toastSweep 1.6s ease-in-out forwards !important;
  animation-delay: 0.1s !important;
}
@keyframes toastSweep { 0% { left: -150%;
}
  100% { left: 150%;
}
}
.toast-icon-container { width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: rgba(212, 168, 83, 0.06) !important;
  border: 1px solid rgba(212, 168, 83, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 10px rgba(212, 168, 83, 0.1) !important;
  z-index: 2 !important;
}
.toast-icon { font-size: 22px !important;
  color: var(--gold) !important;
  margin-top: 0 !important;
}
.toast-content { display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
  flex-grow: 1 !important;
  z-index: 2 !important;
}
.toast-title-container { display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}
.toast-title { font-family: var(--font-display) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  color: var(--gold) !important;
  text-transform: uppercase !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
}
.toast-title-line { height: 1px !important;
  background: linear-gradient(90deg, rgba(212, 168, 83, 0.4) 0%, rgba(212, 168, 83, 0) 100%) !important;
  width: 100% !important;
  margin-top: 3px !important;
}
.toast-message { font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #D1D5DB !important;
  line-height: 1.45 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}
.toast--success { border-color: rgba(16, 185, 129, 0.25) !important;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(16, 185, 129, 0.08) !important;
}
.toast--success::after { background: linear-gradient(135deg, rgba(16, 185, 129, 0.45), transparent 50%) !important;
}
.toast--success .toast-icon-container { background: rgba(16, 185, 129, 0.06) !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.15) !important;
}
.toast--success .toast-icon { color: #10B981 !important;
}
.toast--success .toast-title { color: #10B981 !important;
}
.toast--success .toast-title-line { background: linear-gradient(90deg, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0) 100%) !important;
}
.toast--error { border-color: rgba(239, 68, 68, 0.25) !important;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(239, 68, 68, 0.08) !important;
}
.toast--error::after { background: linear-gradient(135deg, rgba(239, 68, 68, 0.45), transparent 50%) !important;
}
.toast--error .toast-icon-container { background: rgba(239, 68, 68, 0.06) !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.15) !important;
}
.toast--error .toast-icon { color: #EF4444 !important;
}
.toast--error .toast-title { color: #EF4444 !important;
}
.toast--error .toast-title-line { background: linear-gradient(90deg, rgba(239, 68, 68, 0.4) 0%, rgba(239, 68, 68, 0) 100%) !important;
}
.toast--warning { border-color: rgba(245, 158, 11, 0.25) !important;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(245, 158, 11, 0.08) !important;
}
.toast--warning::after { background: linear-gradient(135deg, rgba(245, 158, 11, 0.45), transparent 50%) !important;
}
.toast--warning .toast-icon-container { background: rgba(245, 158, 11, 0.06) !important;
  border-color: rgba(245, 158, 11, 0.3) !important;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.15) !important;
}
.toast--warning .toast-icon { color: #F59E0B !important;
}
.toast--warning .toast-title { color: #F59E0B !important;
}
.toast--warning .toast-title-line { background: linear-gradient(90deg, rgba(245, 158, 11, 0.4) 0%, rgba(245, 158, 11, 0) 100%) !important;
}
.toast--info { border-color: rgba(212, 168, 83, 0.25) !important;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(212, 168, 83, 0.08) !important;
}
.toast--info::after { background: linear-gradient(135deg, rgba(212, 168, 83, 0.45), transparent 50%) !important;
}
.toast--info .toast-icon-container { background: rgba(212, 168, 83, 0.06) !important;
  border-color: rgba(212, 168, 83, 0.3) !important;
  box-shadow: 0 0 10px rgba(212, 168, 83, 0.15) !important;
}
.toast--info .toast-icon { color: var(--gold) !important;
}
.toast--info .toast-title { color: var(--gold) !important;
}
.toast--info .toast-title-line { background: linear-gradient(90deg, var(--gold) 0%, rgba(212, 168, 83, 0) 100%) !important;
}
@media (max-width: 576px) { .toast-container { top: 16px !important;
  right: 16px !important;
  left: 16px !important;
  width: auto !important;
  max-width: none !important;
}
  .toast { transform: translateX(30px) scale(0.95) !important;
}
  .toast.show { transform: translateX(0) scale(1) !important;
}
}
.tox-tinymce { border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  background-color: var(--bg-primary) !important;
  background: var(--bg-primary) !important;
  overflow: hidden !important;
  transition: border-color var(--transition-fast) !important;
}
.tox-tinymce.tox-tinymce--focused { border-color: var(--gold) !important;
  box-shadow: 0 0 0 1px var(--gold) !important;
}
.tox .tox-editor-container,
.tox .tox-editor-header,
.tox .tox-toolbar,
.tox .tox-toolbar__overflow,
.tox .tox-toolbar__primary,
.tox .tox-toolbar--no-divider,
.tox .tox-edit-area,
.tox .tox-edit-area__iframe { background-color: var(--bg-primary) !important;
  background: var(--bg-primary) !important;
  border: 0 !important;
  box-shadow: none !important;
}
.tox .tox-editor-header { border-bottom: 1px solid var(--border) !important;
  padding: 4px 8px !important;
}
.tox .tox-tbtn { color: var(--text-secondary) !important;
  border-radius: var(--radius-sm) !important;
  transition: all var(--transition-fast) !important;
  margin: 2px !important;
}
.tox .tox-tbtn svg { fill: var(--text-secondary) !important;
}
.tox .tox-tbtn:hover { background-color: rgba(212, 175, 55, 0.08) !important;
  color: var(--gold) !important;
}
.tox .tox-tbtn:hover svg { fill: var(--gold) !important;
}
.tox .tox-tbtn--active,
.tox .tox-tbtn--enabled { background-color: rgba(212, 175, 55, 0.15) !important;
  color: var(--gold) !important;
}
.tox .tox-tbtn--active svg,
.tox .tox-tbtn--enabled svg { fill: var(--gold) !important;
}
.tox .tox-tbtn--select { background-color: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text-primary) !important;
  padding: 0 8px !important;
}
.tox .tox-tbtn--select svg { fill: var(--text-secondary) !important;
}
.tox-tinymce { border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  overflow: hidden !important;
  transition: border-color var(--transition-fast) !important;
}
.tox-tinymce:focus-within { border-color: var(--gold-dim) !important;
}
.tox .tox-edit-area__iframe { background-color: var(--bg-primary) !important;
}
.tox .tox-statusbar { background-color: var(--bg-surface) !important;
  background: var(--bg-surface) !important;
  border-top: 1px solid var(--border) !important;
  color: var(--text-tertiary) !important;
}
.tox .tox-statusbar a,
.tox .tox-statusbar__path-item,
.tox .tox-statusbar__wordcount { color: var(--text-secondary) !important;
}
.tox .tox-statusbar__resize-handle svg { fill: var(--text-secondary) !important;
}
.tox .tox-statusbar__resize-handle:hover svg { fill: var(--gold) !important;
}
.tox .tox-dialog { background-color: var(--bg-card) !important;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-gold) !important;
  border-radius: var(--radius-lg) !important;
}
.tox .tox-dialog-wrap__backdrop { background-color: rgba(0, 0, 0, 0.5) !important;
}
.tox .tox-dialog__header,
.tox .tox-dialog__footer { background-color: var(--bg-surface) !important;
  background: var(--bg-surface) !important;
  color: var(--text-primary) !important;
  border-color: var(--border) !important;
}
.tox .tox-dialog__title { color: var(--gold) !important;
  font-size: 15px !important;
}
.tox .tox-dialog__body { color: var(--text-primary) !important;
}
.tox .tox-label { color: var(--text-secondary) !important;
}
.tox .tox-button { background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #0B0E17 !important;
  font-weight: 700 !important;
}
.tox .tox-button--secondary { background-color: transparent !important;
  background: transparent !important;
  border-color: var(--border) !important;
  color: var(--text-primary) !important;
}
.tox .tox-textfield,
.tox .tox-selectfield select { background-color: var(--bg-input) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-primary) !important;
}
.tox .tox-textfield:focus,
.tox .tox-selectfield select:focus { border-color: var(--gold) !important;
}
.tox .tox-menu { background-color: var(--bg-card) !important;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-gold) !important;
  color: var(--text-primary) !important;
}
.tox .tox-collection__item { color: var(--text-primary) !important;
}
.tox .tox-collection__item-label { color: var(--text-primary) !important;
}
.tox .tox-collection__item--active,
.tox .tox-collection__item:hover { background-color: var(--gold-glow) !important;
  color: var(--gold) !important;
}
.comment-text-content img,
#topic-preview-content img,
#topic-detail-body img,
.thread-detail-body img,
.comment-text img,
.comment-body img,
.post-body-content img,
.rich-content img { display: inline;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
.comment-text-content ul,
#topic-preview-content ul,
#topic-detail-body ul,
.thread-detail-body ul,
.comment-text ul { list-style: disc !important;
  padding-left: 1.5em !important;
  margin: 6px 0 !important;
}
.comment-text-content ol,
#topic-preview-content ol,
#topic-detail-body ol,
.thread-detail-body ol,
.comment-text ol { list-style: decimal !important;
  padding-left: 1.5em !important;
  margin: 6px 0 !important;
}
.comment-text-content li,
#topic-preview-content li,
#topic-detail-body li,
.thread-detail-body li,
.comment-text li { display: list-item !important;
  margin: 2px 0 !important;
}
.comment-text-content h1,
#topic-preview-content h1,
#topic-detail-body h1 { font-size: 1.8em;
  font-weight: 700;
  margin: 12px 0 6px;
}
.comment-text-content h2,
#topic-preview-content h2,
#topic-detail-body h2 { font-size: 1.4em;
  font-weight: 700;
  margin: 10px 0 5px;
}
.comment-text-content h3,
#topic-preview-content h3,
#topic-detail-body h3 { font-size: 1.15em;
  font-weight: 600;
  margin: 8px 0 4px;
}
.comment-text-content blockquote,
#topic-preview-content blockquote,
#topic-detail-body blockquote,
.thread-detail-body blockquote,
.comment-text blockquote,
.comment-body blockquote { border-left: 3px solid var(--gold) !important;
  background: var(--gold-glow) !important;
  padding: 10px 16px !important;
  margin: 12px 0 !important;
  font-style: italic !important;
  border-radius: 0 6px 6px 0 !important;
  color: var(--text-secondary) !important;
}
.comment-text-content pre,
#topic-preview-content pre,
#topic-detail-body pre { background: var(--bg-surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  padding: 10px 14px !important;
  font-family: monospace !important;
  font-size: 13px !important;
  overflow-x: auto !important;
  white-space: pre !important;
}
.comment-text-content table,
#topic-preview-content table,
#topic-detail-body table { border-collapse: collapse !important;
  width: 100% !important;
  margin: 8px 0 !important;
}
.comment-text-content table td,
.comment-text-content table th,
#topic-preview-content table td,
#topic-preview-content table th,
#topic-detail-body table td,
#topic-detail-body table th { border: 1px solid var(--border) !important;
  padding: 6px 10px !important;
}
.comment-text-content table th,
#topic-preview-content table th,
#topic-detail-body table th { background: var(--gold-glow) !important;
  font-weight: 700 !important;
}
.tox .tox-statusbar__branding { display: none !important;
}
.alert-box { display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: var(--space-lg);
  animation: alertSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
  border: 1px solid transparent;
}
.alert-box--error { background: rgba(239, 83, 80, 0.07);
  border-color: rgba(239, 83, 80, 0.25);
  color: #ef5350;
  box-shadow: 0 4px 20px rgba(239, 83, 80, 0.08);
}
.alert-box--success { background: rgba(46, 204, 113, 0.07);
  border-color: rgba(46, 204, 113, 0.25);
  color: #2ecc71;
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.08);
}
@keyframes alertSlideDown { from { opacity: 0;
  transform: translateY(-8px);
}
  to { opacity: 1;
  transform: translateY(0);
}
}
.empty-state { display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
}
.empty-state__icon { font-size: 32px;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}
.empty-state__title { font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.empty-state__desc { font-size: 12.5px;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.5;
}
.cat-btn { padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(212, 175, 55, 0.02);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cat-btn:hover { border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}
.cat-btn.active { border-color: var(--gold) !important;
  color: #ffffff !important;
  background: var(--gold) !important;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}
.align-center,
.center,
.bbCodeAlign-center { text-align: center !important;
  display: block;
}
.align-left,
.left,
.bbCodeAlign-left { text-align: left !important;
  display: block;
}
.align-right,
.right,
.bbCodeAlign-right { text-align: right !important;
  display: block;
}
.post-header-actions-bar { display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) { .post-meta-row { flex-wrap: wrap !important;
  gap: 8px 12px !important;
}
  .post-meta-row .meta-divider { display: none !important;
}
  .post-meta-row span { white-space: nowrap !important;
  font-size: 11px !important;
}
  .post-meta-row .meta-bookmark { margin-left: auto !important;
}
  .post-header-actions-bar { flex-direction: column !important;
  align-items: stretch !important;
  gap: 10px !important;
  width: 100% !important;
}
  .post-header-actions-bar > div { display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}
  .post-vote-buttons { display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 8px !important;
}
  .post-vote-buttons .post-action-btn { flex: 1 1 0% !important;
  justify-content: center !important;
  padding: 8px 12px !important;
  font-size: 12.5px !important;
  border-radius: 10px !important;
  height: 38px !important;
}
  .post-vote-buttons .thread-vote-value { white-space: nowrap !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  padding: 0 4px !important;
}
  .post-header-actions-bar .btn,
  .post-header-actions-bar .btn--ghost,
  .post-header-actions-bar #btn-edit-topic { width: 100% !important;
  justify-content: center !important;
  height: 38px !important;
  border-radius: 10px !important;
}
  .comment-container--nested { margin-left: 10px !important;
  padding-left: 8px !important;
  border-left-width: 1.5px !important;
}
  .review-replies-list,
  .post-replies-sub,
  .comment-replies-list { margin-left: 0 !important;
  padding-left: 0 !important;
}
}
.comments-list,
.forum-topic-replies-list { gap: 12px !important;
}
.comment-card { padding: 12px 16px !important;
  gap: 12px !important;
}
.comment-card .comment-main { display: flex;
  flex-direction: column;
  gap: 6px;
}
.comment-text-content { font-size: 13.5px !important;
  line-height: 1.5 !important;
}
.comment-text-content p { margin: 0 0 6px 0 !important;
}
.comment-text-content p:last-child { margin-bottom: 0 !important;
}
.comment-quote-block { padding: 8px 12px !important;
  margin-bottom: 8px !important;
  font-size: 12px !important;
  border-radius: 4px !important;
  border: 1px dashed rgba(212, 175, 55, 0.2) !important;
  border-left: 3px solid var(--gold) !important;
  background: var(--bg-primary) !important;
}
.comment-quote-block .quote-author { font-size: 11px !important;
  margin-bottom: 2px !important;
}
.comment-quote-block .quote-text { line-height: 1.3 !important;
}
.comment-actions { margin-top: 2px !important;
  gap: var(--space-md) !important;
}
.auth-page-container { display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  position: relative;
  z-index: 1;
  background: var(--bg-body);
  overflow: hidden;
  padding: 40px 20px;
}
.auth-page-container::before { content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(212, 168, 83, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 70%, rgba(79, 125, 245, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 60% 20%, rgba(124, 58, 237, 0.04) 0%, transparent 70%);
  animation: authMeshShift 15s ease-in-out infinite alternate;
  z-index: 0;
}
[data-theme="light"] .auth-page-container::before { background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(184, 136, 46, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 70%, rgba(59, 95, 219, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 60% 20%, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
}
@keyframes authMeshShift { 0% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.7; transform: scale(0.98); }
}
.auth-page-container::after { content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 168, 83, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}
[data-theme="light"] .auth-page-container::after { background-image: radial-gradient(rgba(184, 136, 46, 0.06) 1px, transparent 1px);
}
.auth-layout { display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 960px;
  min-height: calc(100vh - var(--header-height) - 80px);
  position: relative;
  z-index: 2;
  gap: 0;
}
.auth-brand-panel { flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
}
.auth-brand-panel__content { max-width: 380px;
}
.auth-brand-panel__logo { margin-bottom: 32px;
}
.auth-brand-panel__title { font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.auth-brand-panel__desc { font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}
.auth-brand-panel__features { display: flex;
  flex-direction: column;
  gap: 20px;
}
.auth-feature { display: flex;
  align-items: flex-start;
  gap: 14px;
}
.auth-feature__icon { width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 168, 83, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.auth-feature__title { font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.auth-feature__desc { font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.auth-brand-panel__footer { position: absolute;
  bottom: 24px;
  left: 48px;
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.3px;
}
.auth-form-side { display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  flex-shrink: 0;
  width: 460px;
}
.auth-brand-panel::after { content: '';
  position: absolute;
  top: 15%;
  bottom: 15%;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-gold), transparent);
}
@media (max-width: 860px) { .auth-layout { flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
  width: 100%;
  gap: 0;
}
  .auth-brand-panel { display: flex;
  padding: 30px 24px 10px;
  align-items: center;
  text-align: center;
}
  .auth-brand-panel__logo { display: none;
}
  .auth-brand-panel__content { max-width: 420px;
}
  .auth-brand-panel__title { font-size: 22px;
  margin-bottom: 6px;
}
  .auth-brand-panel__desc { font-size: 13px;
  line-height: 1.4;
  margin-bottom: 0;
}
  .auth-brand-panel__features { display: none;
}
  .auth-brand-panel__footer { display: none;
}
  .auth-brand-panel::after { display: none;
}
  .auth-form-side { width: 100%;
  max-width: 440px;
  padding: 0 16px 40px;
}
}
.auth-card-wrapper { width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
  padding: 40px 36px 36px;
  background: linear-gradient(170deg,
    rgba(15, 18, 35, 0.95) 0%,
    rgba(10, 13, 25, 0.98) 100%);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 4px;
  animation: authCardReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes authCardReveal { from { opacity: 0;
  transform: translateY(30px) scale(0.96);
  filter: blur(4px);
}
  to { opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
}
.auth-corner { position: absolute;
  width: 20px;
  height: 20px;
  z-index: 5;
  pointer-events: none;
}
.auth-corner::before,
.auth-corner::after { content: '';
  position: absolute;
  background: linear-gradient(135deg, #D4A853, #F0D48A);
}
.auth-corner--tl { top: -1px;
  left: -1px;
}
.auth-corner--tl::before { top: 0; left: 0;
  width: 20px; height: 2px;
}
.auth-corner--tl::after { top: 0; left: 0;
  width: 2px; height: 20px;
}
.auth-corner--tr { top: -1px;
  right: -1px;
}
.auth-corner--tr::before { top: 0; right: 0;
  width: 20px; height: 2px;
}
.auth-corner--tr::after { top: 0; right: 0;
  width: 2px; height: 20px;
}
.auth-corner--bl { bottom: -1px;
  left: -1px;
}
.auth-corner--bl::before { bottom: 0; left: 0;
  width: 20px; height: 2px;
}
.auth-corner--bl::after { bottom: 0; left: 0;
  width: 2px; height: 20px;
}
.auth-corner--br { bottom: -1px;
  right: -1px;
}
.auth-corner--br::before { bottom: 0; right: 0;
  width: 20px; height: 2px;
}
.auth-corner--br::after { bottom: 0; right: 0;
  width: 2px; height: 20px;
}
.auth-shimmer { position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  overflow: hidden;
  z-index: 6;
}
.auth-shimmer::after { content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 168, 83, 0.0),
    rgba(212, 168, 83, 0.6),
    rgba(240, 212, 138, 0.9),
    rgba(212, 168, 83, 0.6),
    rgba(212, 168, 83, 0.0),
    transparent);
  animation: authShimmerSweep 4s ease-in-out infinite;
}
@keyframes authShimmerSweep { 0% { left: -60%; }
  100% { left: 100%; }
}
.auth-crest { width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-crest__icon { width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #D4A853;
  background: rgba(212, 168, 83, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.auth-crest::before { content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
  animation: authCrestPulse 3s ease-in-out infinite;
  z-index: 1;
}
@keyframes authCrestPulse { 0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.auth-crest::after { content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 83, 0.08);
  z-index: 0;
}
.auth-crest--success .auth-crest__icon { color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.25);
}
.auth-crest--success::before { background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
}
.auth-crest--success::after { border-color: rgba(34, 197, 94, 0.1);
}
.auth-crest--error .auth-crest__icon { color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.25);
}
.auth-crest--error::before { background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
}
.auth-crest--error::after { border-color: rgba(239, 68, 68, 0.1);
}
.auth-form-panel { width: 100%;
  display: flex;
  flex-direction: column;
}
.auth-form-panel-header { text-align: center;
  margin-bottom: 28px;
}
.auth-form-panel-header h2 { font-family: var(--font-display);
  font-size: 26px;
  color: #D4A853;
  margin-bottom: 8px;
  letter-spacing: 2px;
  font-weight: 600;
}
.auth-form-panel-header p { font-size: 13px;
  color: #6B7194;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
.auth-page-container .form-label { color: #7A7F9A !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}
.auth-page-container .form-input-wrapper { background: transparent !important;
}
.auth-page-container .form-input-wrapper .form-input { background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  color: #E8EAF0 !important;
  border-radius: 4px !important;
  transition: all 0.25s ease !important;
}
.auth-page-container .form-input-wrapper .form-input::placeholder { color: #3D4260 !important;
}
.auth-page-container .form-input-wrapper .form-input:focus { border-color: rgba(212, 168, 83, 0.4) !important;
  background: rgba(212, 168, 83, 0.03) !important;
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.06),
              0 0 20px rgba(212, 168, 83, 0.05) !important;
}
.auth-page-container .form-input-icon { color: #3D4260 !important;
  transition: color 0.25s ease !important;
}
.auth-page-container .form-input-wrapper:focus-within .form-input-icon { color: #D4A853 !important;
}
.auth-page-container .password-toggle { color: #3D4260 !important;
  transition: color 0.2s ease !important;
}
.auth-page-container .password-toggle:hover { color: #D4A853 !important;
}
.auth-page-container .btn--primary { background: linear-gradient(135deg, #D4A853 0%, #B8882E 100%) !important;
  color: #0B0E17 !important;
  border: none !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  transition: all 0.25s ease !important;
  position: relative !important;
  overflow: hidden !important;
}
.auth-page-container .btn--primary::before { content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent) !important;
  transition: left 0.5s ease !important;
}
.auth-page-container .btn--primary:hover { background: linear-gradient(135deg, #E8BD6B 0%, #D4A853 100%) !important;
  box-shadow: 0 6px 30px rgba(212, 168, 83, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-1px) !important;
}
.auth-page-container .btn--primary:hover::before { left: 100% !important;
}
.auth-divider { display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0 18px 0;
}
.auth-divider__line { flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.12), transparent);
}
.auth-divider__text { font-size: 10px;
  color: #3D4260;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.auth-divider__line::before { content: '◆';
  float: right;
  margin-right: -4px;
  color: rgba(212, 168, 83, 0.2);
  font-size: 5px;
  line-height: 1;
  transform: translateY(-2px);
}
.auth-divider__line:last-child::before { float: left;
  margin-left: -4px;
  margin-right: 0;
}
.auth-google-btn { width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: #B0B4CA;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-primary);
}
.auth-google-btn:hover { background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 168, 83, 0.2);
  color: #E8EAF0;
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.06);
}
.auth-switch-link { font-size: 12.5px;
  color: #6B7194;
  text-align: center;
  margin-top: 24px;
}
.auth-switch-link a { color: #D4A853;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}
.auth-switch-link a:hover { color: #F0D48A;
  border-bottom-color: rgba(212, 168, 83, 0.3);
}
.auth-link { color: #D4A853 !important;
  font-size: 11.5px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.auth-link:hover { color: #F0D48A !important;
}
.auth-page-container .alert-box { background: rgba(239, 83, 80, 0.06) !important;
  border-color: rgba(239, 83, 80, 0.15) !important;
  color: #ef5350 !important;
  border-radius: 4px !important;
}
.auth-page-container ~ footer { display: none;
}
[data-theme="light"] .auth-card-wrapper { background: linear-gradient(170deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(248, 245, 240, 0.98) 100%);
  border-color: rgba(184, 136, 46, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(184, 136, 46, 0.08);
}
[data-theme="light"] .auth-corner::before,
[data-theme="light"] .auth-corner::after { background: linear-gradient(135deg, #B8882E, #D4A853);
}
[data-theme="light"] .auth-shimmer::after { background: linear-gradient(90deg,
    transparent,
    rgba(184, 136, 46, 0.0),
    rgba(184, 136, 46, 0.5),
    rgba(212, 168, 83, 0.8),
    rgba(184, 136, 46, 0.5),
    rgba(184, 136, 46, 0.0),
    transparent);
}
[data-theme="light"] .auth-crest__icon { color: #B8882E;
  background: rgba(184, 136, 46, 0.06);
  border-color: rgba(184, 136, 46, 0.2);
}
[data-theme="light"] .auth-crest::before { background: radial-gradient(circle, rgba(184, 136, 46, 0.12) 0%, transparent 70%);
}
[data-theme="light"] .auth-crest::after { border-color: rgba(184, 136, 46, 0.06);
}
[data-theme="light"] .auth-form-panel-header h2 { color: #B8882E;
  text-shadow: none;
}
[data-theme="light"] .auth-form-panel-header p { color: #5C566E;
}
[data-theme="light"] .auth-page-container .form-label { color: #5C566E !important;
}
[data-theme="light"] .auth-page-container .form-input-wrapper .form-input { background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #1A1530 !important;
}
[data-theme="light"] .auth-page-container .form-input-wrapper .form-input::placeholder { color: #9490A5 !important;
}
[data-theme="light"] .auth-page-container .form-input-wrapper .form-input:focus { border-color: rgba(184, 136, 46, 0.5) !important;
  background: rgba(184, 136, 46, 0.02) !important;
  box-shadow: 0 0 0 3px rgba(184, 136, 46, 0.08),
              0 0 20px rgba(184, 136, 46, 0.05) !important;
}
[data-theme="light"] .auth-page-container .form-input-icon { color: #9490A5 !important;
}
[data-theme="light"] .auth-page-container .form-input-wrapper:focus-within .form-input-icon { color: #B8882E !important;
}
[data-theme="light"] .auth-page-container .password-toggle { color: #9490A5 !important;
}
[data-theme="light"] .auth-page-container .password-toggle:hover { color: #B8882E !important;
}
[data-theme="light"] .auth-page-container .btn--primary { background: linear-gradient(135deg, #B8882E 0%, #9A6F1E 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(184, 136, 46, 0.2) !important;
}
[data-theme="light"] .auth-page-container .btn--primary:hover { background: linear-gradient(135deg, #D4A853 0%, #B8882E 100%) !important;
  box-shadow: 0 6px 30px rgba(184, 136, 46, 0.3) !important;
}
[data-theme="light"] .auth-divider__line { background: linear-gradient(90deg, transparent, rgba(184, 136, 46, 0.15), transparent);
}
[data-theme="light"] .auth-divider__line::before { color: rgba(184, 136, 46, 0.25);
}
[data-theme="light"] .auth-divider__text { color: #9490A5;
}
[data-theme="light"] .auth-google-btn { border-color: rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
  color: #5C566E;
}
[data-theme="light"] .auth-google-btn:hover { background: rgba(0, 0, 0, 0.04);
  border-color: rgba(184, 136, 46, 0.25);
  color: #1A1530;
  box-shadow: 0 0 20px rgba(184, 136, 46, 0.06);
}
[data-theme="light"] .auth-switch-link { color: #5C566E;
}
[data-theme="light"] .auth-switch-link a { color: #B8882E;
}
[data-theme="light"] .auth-switch-link a:hover { color: #9A6F1E;
  border-bottom-color: rgba(184, 136, 46, 0.3);
}
[data-theme="light"] .auth-link { color: #B8882E !important;
}
[data-theme="light"] .auth-link:hover { color: #9A6F1E !important;
}
[data-theme="light"] .auth-page-container .alert-box { background: rgba(239, 83, 80, 0.06) !important;
  border-color: rgba(239, 83, 80, 0.15) !important;
}
@media (max-width: 480px) { .auth-card-wrapper { padding: 32px 22px 28px;
  margin: 0 8px;
  max-width: 100%;
}
  .auth-form-panel-header h2 { font-size: 22px;
}
  .auth-crest { width: 56px;
  height: 56px;
}
  .auth-crest__icon { width: 44px;
  height: 44px;
  font-size: 20px;
}
}
.comment-node { margin-top: var(--space-md);
  position: relative;
}
.comment-node-replies { margin-left: 28px;
  border-left: 2px solid rgba(212, 175, 55, 0.15);
  padding-left: 16px;
  margin-top: 10px;
  position: relative;
  transition: border-left-color var(--transition-fast);
}
.comment-node-replies:hover { border-left-color: var(--gold);
}
.post-comments-section .comment-card { background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: var(--space-sm) 0 !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
}
.post-comments-section .comment-card:hover { background: rgba(212, 175, 55, 0.02) !important;
  transform: none !important;
  box-shadow: none !important;
}
.post-comments-section .comments-list > .comment-node { border-bottom: 1px solid var(--border-light);
  padding-bottom: var(--space-md);
  margin-top: var(--space-md);
}
.post-comments-section .comments-list > .comment-node:first-child { margin-top: 0;
}
.post-comments-section .comments-list > .comment-node:last-child { border-bottom: none;
  padding-bottom: 0;
}
.comment-node[data-depth="3"] .comment-node-replies,
.comment-node[data-depth="4"] .comment-node-replies,
.comment-node[data-depth="5"] .comment-node-replies,
.comment-node[data-depth="6"] .comment-node-replies { margin-left: 10px !important;
  padding-left: 10px !important;
}
.comment-thread-line-hitbox { position: absolute;
  top: 0;
  left: -8px;
  width: 16px;
  height: 100%;
  cursor: pointer;
  z-index: 5;
}
.comment-node.replies-collapsed > .comment-node-replies { display: none !important;
}
.btn-toggle-replies { font-size: 12px !important;
  color: var(--gold) !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-weight: 600 !important;
  transition: color var(--transition-fast) !important;
  text-decoration: none !important;
}
.btn-toggle-replies:hover { color: var(--text-primary) !important;
}
@media (max-width: 768px) { .comment-node-replies { margin-left: 14px;
  padding-left: 10px;
}
  .comment-thread-line-hitbox { left: -5px;
  width: 10px;
}
  .comment-node[data-depth="2"] .comment-node-replies { margin-left: 8px !important;
  padding-left: 8px !important;
}
}
.post-comments-section .comment-node.comment-card--highlight > .comment-card { background-color: rgba(212, 175, 55, 0.12) !important;
  box-shadow: 0 0 0 1.5px rgba(212, 175, 55, 0.4), 0 4px 20px rgba(212, 175, 55, 0.18) !important;
  border-radius: var(--radius-md) !important;
  transition: background-color 0.6s ease, box-shadow 0.6s ease, border-radius 0.6s ease !important;
}
.post-comments-section .comment-node > .comment-card { transition: background-color 0.6s ease, box-shadow 0.6s ease, border-radius 0.6s ease;
}
@keyframes textShimmer { 0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.server-row.premium { position: relative;
  border: 1px solid var(--border-gold, rgba(212, 175, 55, 0.20)) !important;
  background: linear-gradient(270deg,
    var(--bg-card) 0%,
    var(--bg-premium-tint, rgba(212, 175, 55, 0.16)) 30%,
    var(--bg-card) 50%,
    var(--bg-premium-tint, rgba(212, 175, 55, 0.16)) 70%,
    var(--bg-card) 100%
  ) !important;
  background-size: 400% 400% !important;
  animation: premiumBgGlow 10s ease infinite !important;
  box-shadow: 0 8px 32px var(--gold-glow, rgba(212, 175, 55, 0.18)) !important;
}
.server-row.gold { position: relative;
  border: 1px solid rgba(212, 175, 55, 0.20) !important;
  background: linear-gradient(270deg,
    var(--bg-card) 0%,
    rgba(212, 175, 55, 0.16) 30%,
    var(--bg-card) 50%,
    rgba(212, 175, 55, 0.16) 70%,
    var(--bg-card) 100%
  ) !important;
  background-size: 400% 400% !important;
  animation: premiumBgGlow 10s ease infinite !important;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.18) !important;
}
@keyframes premiumBadgeShimmer { 0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.card_badge { display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-family: 'Inter', var(--font-display), sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.server-row.premium .card_badge { background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%),
              var(--bg-premium-tint, rgba(212, 175, 55, 0.12));
  background-size: 200% auto;
  animation: premiumBadgeShimmer 3s linear infinite;
  border: 1px solid var(--border-gold, rgba(212, 175, 55, 0.45));
  color: var(--gold, #D4A853) !important;
  -webkit-text-fill-color: var(--gold, #D4A853) !important;
  text-shadow: none;
  box-shadow: 0 0 10px var(--gold-glow, rgba(212, 175, 55, 0.1));
}
.server-row.gold .card_badge { background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: #c5a059 !important;
  -webkit-text-fill-color: #c5a059 !important;
  text-shadow: none;
  box-shadow: none;
}
.server-row.promoted .card_badge { background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: #c5a059 !important;
  -webkit-text-fill-color: #c5a059 !important;
  text-shadow: none;
  box-shadow: none;
}
@keyframes premiumTextShimmer { 0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.title-style-rainbow-shimmer { background: linear-gradient(90deg, #ff007f, #7f00ff, #00f0ff, #ff007f);
  background-size: 300% 100%;
  animation: premiumTextShimmer 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-gold-metallic { background: linear-gradient(90deg, #D4A853 0%, #FFF3D1 25%, #F0D48A 50%, #FFF3D1 75%, #D4A853 100%);
  background-size: 200% auto;
  animation: premiumTextShimmer 3s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-purple-sunset { background: linear-gradient(90deg, #8b5cf6, #ec4899, #f97316, #8b5cf6);
  background-size: 300% 100%;
  animation: premiumTextShimmer 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-ocean-wave { background: linear-gradient(90deg, #06b6d4, #3b82f6, #10b981, #06b6d4);
  background-size: 300% 100%;
  animation: premiumTextShimmer 5s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-cosmic-star { background: linear-gradient(90deg, #6366f1, #d946ef, #4f46e5, #6366f1);
  background-size: 300% 100%;
  animation: premiumTextShimmer 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-aurora-borealis { background: linear-gradient(90deg, #00f2fe, #4facfe, #0000fe, #00f2fe);
  background-size: 300% 100%;
  animation: premiumTextShimmer 5s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-rose-gold { background: linear-gradient(90deg, #e0b0ff, #b76e79, #ffd700, #e0b0ff);
  background-size: 300% 100%;
  animation: premiumTextShimmer 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-frozen-ice { background: linear-gradient(90deg, #2193b0, #6dd5ed, #2193b0);
  background-size: 200% auto;
  animation: premiumTextShimmer 3.5s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-ruby-fire { background: linear-gradient(90deg, #cb2d3e, #ef473a, #ffd700, #cb2d3e);
  background-size: 300% 100%;
  animation: premiumTextShimmer 4.5s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-mint-fresh { background: linear-gradient(90deg, #11998e, #38ef7d, #11998e);
  background-size: 200% auto;
  animation: premiumTextShimmer 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-lavender-dream { background: linear-gradient(90deg, #a18cd1 0%, #fbc2eb 100%);
  background-size: 200% auto;
  animation: premiumTextShimmer 5s linear;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-citrus-burst { background: linear-gradient(90deg, #f83600 0%, #f9d423 100%);
  background-size: 200% auto;
  animation: premiumTextShimmer 3s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-electric-magenta { background: linear-gradient(90deg, #e94057, #f27121, #8a2387, #e94057);
  background-size: 300% 100%;
  animation: premiumTextShimmer 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-desert-sand { background: linear-gradient(90deg, #CA9E5A, #FDF5E6, #D4AF37, #CA9E5A);
  background-size: 300% 100%;
  animation: premiumTextShimmer 4.5s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-mystic-forest { background: linear-gradient(90deg, #134E5E, #71B280, #134E5E);
  background-size: 200% auto;
  animation: premiumTextShimmer 5s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-sakura-blossom { background: linear-gradient(90deg, #ffc3a0 0%, #ffafbd 50%, #ffc3a0 100%);
  background-size: 200% auto;
  animation: premiumTextShimmer 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-deep-abyss { background: linear-gradient(90deg, #00223e, #1d976c, #00223e);
  background-size: 200% auto;
  animation: premiumTextShimmer 5s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-volcanic-magma { background: linear-gradient(90deg, #f12711, #f5af19, #f12711);
  background-size: 200% auto;
  animation: premiumTextShimmer 3s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-sweet-candy { background: linear-gradient(90deg, #ff758c 0%, #ff7eb3 50%, #ff758c 100%);
  background-size: 200% auto;
  animation: premiumTextShimmer 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
.title-style-royal-velvet { background: linear-gradient(90deg, #130CB7, #52E5E7, #130CB7);
  background-size: 200% auto;
  animation: premiumTextShimmer 4.5s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 800;
}
@property --border-angle { syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes border-beam-anim { to { --border-angle: 360deg;
}
}
.server-row.premium::after,
.server-row.gold::after { content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  animation: border-beam-anim 8s linear infinite;
  animation-delay: var(--border-delay, 0s);
}
.server-row.premium::after { background: conic-gradient(from var(--border-angle), transparent 70%, var(--gold, #D4A853) 88%, #ffffff 96%, var(--gold, #D4A853) 99%, transparent 100%) !important;
}
.server-row.gold::after { background: conic-gradient(from var(--border-angle), transparent 70%, #D4A853 88%, #ffffff 96%, #D4A853 99%, transparent 100%) !important;
}
.server-row.pinned { border: 1px solid rgba(139, 92, 246, 0.25) !important;
  background: linear-gradient(135deg, var(--bg-card) 92%, rgba(139, 92, 246, 0.05) 100%) !important;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.04) !important;
}
.server-row.pinned:hover { border-color: rgba(139, 92, 246, 0.45) !important;
  box-shadow: var(--shadow-md), 0 0 15px rgba(139, 92, 246, 0.08) !important;
}
.server-row__pin { position: absolute;
  top: 10px;
  right: 12px;
  color: var(--text-tertiary);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all var(--transition-base);
  z-index: 2;
}
.server-row.pinned:hover .server-row__pin { color: #a78bfa;
  opacity: 1;
  transform: scale(1.1);
}
.global-ticker-bar { position: relative;
  width: 100%;
  height: 40px;
  background: #080614;
  border-bottom: 2px solid rgba(223, 181, 60, 0.85);
  box-shadow: 0 4px 20px rgba(223, 181, 60, 0.12), inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
[data-theme="light"] .global-ticker-bar { background: #fcfaf2;
  border-bottom: 2px solid rgba(184, 136, 46, 0.85);
  box-shadow: 0 4px 15px rgba(184, 136, 46, 0.08);
}
.ticker-track { position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.ticker-item { display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  transform: translateY(0);
  opacity: 1;
}
.ticker-badge { display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #dfb53c, #b8882e);
  color: #090714 !important;
  -webkit-text-fill-color: #090714 !important;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3.5px 9px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 6px rgba(223, 181, 60, 0.4);
  animation: badgePulse 2.5s infinite alternate;
  flex-shrink: 0;
  white-space: nowrap;
}
@keyframes badgePulse { 0% { box-shadow: 0 0 4px rgba(223, 181, 60, 0.4); filter: brightness(1); }
  50% { box-shadow: 0 0 14px rgba(223, 181, 60, 0.85); filter: brightness(1.2); }
  100% { box-shadow: 0 0 4px rgba(223, 181, 60, 0.4); filter: brightness(1); }
}
[data-theme="light"] .ticker-badge { background: linear-gradient(135deg, #b8882e, #9a6f1e);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 0 5px rgba(184, 136, 46, 0.35);
}
#ticker-text { background: linear-gradient(90deg, #ffd700 0%, #ff8f00 25%, #fff176 50%, #ff8f00 75%, #ffd700 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: tickerTextShine 4s linear infinite;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@keyframes tickerTextShine { 0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
[data-theme="light"] #ticker-text { background: linear-gradient(90deg, #7c5a1a 0%, #d4af37 25%, #9a6f1e 50%, #d4af37 75%, #7c5a1a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: tickerTextShine 4s linear infinite;
  text-shadow: none;
}
.ticker-item:hover { transform: scale(1.025);
  filter: brightness(1.25);
}
.ticker-item.ticker-exit { transform: translateY(-16px);
  opacity: 0;
}
.ticker-item.ticker-enter { transform: translateY(16px);
  opacity: 0;
  transition: none !important;
}
@media (max-width: 768px) { .global-ticker-bar { height: 34px !important;
  padding: 0 10px !important;
}
  .ticker-track { justify-content: flex-start !important;
  padding: 0 !important;
}
  .ticker-item { justify-content: flex-start !important;
  gap: 8px !important;
  width: 100% !important;
  font-size: 11.5px !important;
}
  .ticker-badge { font-size: 8.5px !important;
  padding: 2px 6px !important;
}
  #ticker-text { font-size: 11px !important;
  max-width: calc(100vw - 110px) !important;
}
}
.ticker-item.ticker-exit { transform: translateY(-20px);
  opacity: 0;
}
.rev6-ad-group-container { width: 100%;
  max-width: 1000px;
  margin: 0 auto 16px auto;
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rev6-ad-group-middle-grid { display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 768px) { .rev6-ad-group-middle-grid { grid-template-columns: 1fr;
}
}
.rev6-ad-group-column { display: flex;
  flex-direction: column;
  gap: 8px;
}
.rev6-skyscraper { position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
  height: 600px;
  z-index: 900;
  background: transparent;
  overflow: hidden;
  opacity: 0.88;
  border-radius: 12px;
}
.rev6-skyscraper--left { left: 10px;
}
.rev6-skyscraper--right { right: 10px;
}
@media (max-width: 1540px) { .rev6-skyscraper { display: none !important;
}
}
.rev6-popup-overlay { position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
}
.rev6-popup-overlay.active { display: flex;
}
.rev6-popup-content { position: relative;
  max-width: 500px;
  width: 90%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.rev6-popup-overlay.active .rev6-popup-content { transform: scale(1);
}
.rev6-popup-close { position: absolute;
  top: -15px;
  right: -15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: #120f24;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.2s ease;
  z-index: 10;
}
.rev6-popup-close:hover { transform: scale(1.1) rotate(90deg);
  background: var(--text-primary);
  color: var(--bg-primary);
}
.rev6-ad-wrapper:hover { }
.rev6-ad-placeholder { background: var(--bg-card) !important;
  border: 1.5px dashed rgba(212, 175, 55, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  border-radius: 12px;
}
.rev6-ad-placeholder:hover { background: var(--bg-card) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.6) !important;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.08) !important;
  transform: translateY(-2px);
}
.ad-placeholder-icon-wrap { width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}
.rev6-ad-placeholder:hover .ad-placeholder-icon-wrap { transform: scale(1.1);
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
}
.ad-placeholder-icon-wrap i { font-size: 20px;
  color: var(--gold);
}
.ad-placeholder-title { font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 6px 0;
}
.ad-placeholder-desc { font-size: 11px;
  color: var(--text-secondary);
  max-width: 180px;
  line-height: 1.4;
}
.ad-placeholder-btn { margin-top: 18px;
  padding: 6px 18px;
  font-size: 10px;
  font-weight: 800;
  color: #120f24;
  background: var(--gold);
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}
.rev6-ad-placeholder:hover .ad-placeholder-btn { background: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
  transform: translateY(-1px);
}
.rev6-pagination { display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  width: 100%;
}
.pagination-btn { display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-secondary) !important;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease !important;
  cursor: pointer;
}
.pagination-btn:hover { background: rgba(212, 175, 55, 0.05) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  transform: translateY(-1px);
}
.pagination-btn.active { background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #120f24 !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25) !important;
}
.rev6-seo-card { margin-top: 48px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
}
.rev6-seo-card__title { font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.rev6-seo-card__wrapper { max-height: 110px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease-in-out;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
.rev6-seo-card__wrapper.expanded { max-height: 1500px;
}
.rev6-seo-card__intro { font-weight: 600;
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 12px;
}
.rev6-seo-card__body { margin-bottom: 16px;
}
.rev6-seo-card__body h3 { font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.rev6-seo-card__body ul { padding-left: 20px;
  margin-top: 12px;
  margin-bottom: 16px;
  list-style-type: disc;
}
.rev6-seo-card__body li { margin-bottom: 8px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.rev6-seo-card__body li strong { color: var(--gold);
}
.rev6-seo-card__body a,
.rev6-seo-card__intro a { color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition-fast);
}
.rev6-seo-card__body a:hover,
.rev6-seo-card__intro a:hover { opacity: 0.8;
}
.rev6-seo-card__overlay { position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--bg-card), transparent);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.rev6-seo-card__wrapper.expanded .rev6-seo-card__overlay { opacity: 0;
}
.rev6-seo-card__btn { background: transparent;
  border: none;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 0;
  transition: color 0.2s ease;
}
.rev6-seo-card__btn:hover { color: var(--text-primary);
}
.rev6-seo-card__btn i { transition: transform 0.3s ease;
}
.rev6-seo-card__btn.active i { transform: rotate(180deg);
}
.iti { width: 100%;
  --iti-dropdown-bg: var(--bg-surface);
  --iti-border-color: var(--border);
  --iti-hover-color: rgba(212, 168, 83, 0.15);
  --iti-dialcode-color: var(--text-secondary);
  --iti-arrow-color: var(--text-secondary);
}
.iti__dropdown-content { background-color: var(--bg-surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
  overflow: hidden;
  max-width: 320px;
}
.iti__country-list { background-color: transparent !important;
  border: none !important;
  color: var(--text-primary) !important;
  z-index: 10000;
  padding: 4px 0 !important;
  max-width: 100% !important;
}
.iti__country { padding: 10px 14px !important;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
}
.iti__country-name { color: var(--text-primary) !important;
}
.iti__dial-code { color: var(--text-secondary) !important;
}
.iti__country.iti__highlight { background-color: rgba(212, 168, 83, 0.15) !important;
}
.iti__country.iti__highlight .iti__country-name { color: var(--gold) !important;
}
.iti__selected-country { background-color: rgba(255, 255, 255, 0.05) !important;
}
.iti__selected-dial-code { color: var(--text-primary) !important;
  font-size: 14.5px;
  font-family: var(--font-body);
}
.iti__search-input { background-color: var(--bg-primary) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 12px !important;
  margin: 8px !important;
  width: calc(100% - 16px) !important;
  font-family: var(--font-body) !important;
  outline: none !important;
}
.iti__search-input:focus { border-color: var(--gold) !important;
}