/* ==========================================================================
   ELO HUNTERS - Premium Valorant Boosting Design System
   Inspired by Eldorado.gg with high-tier gaming aesthetics
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Refined Tactical Gaming / Valorant VCT Dark Palette */
  --bg-main: #0b0d13;
  --bg-surface-1: #10131d;
  --bg-surface-2: #151926;
  --bg-surface-3: #1c2233;
  --bg-card: #131724;
  
  --accent-red: #ff4655;
  --accent-red-glow: rgba(255, 70, 85, 0.12);
  --accent-red-light: #ff6e7b;
  --accent-cyan: #00f59b;
  --accent-cyan-glow: rgba(0, 245, 155, 0.12);
  --accent-gold: #ffc83b;
  --accent-gold-glow: rgba(255, 200, 59, 0.12);
  --accent-purple: #9d4edd;
  
  --text-main: #f5f6fa;
  --text-muted: #8e95a5;
  --text-dim: #5c6375;
  --text-inverse: #0a0b10;
  
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-focus: rgba(255, 70, 85, 0.5);
  --border-active: #00f59b;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.45);
  --shadow-glow-red: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-glow-cyan: 0 4px 14px rgba(0, 0, 0, 0.4);
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Subtle background grid pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select {
  font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-surface-1);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface-3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* Container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Top Header & Notification Ticker
   ========================================================================== */
.top-bar,
.top-notice-bar {
  background: rgba(14, 18, 27, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  padding: 7px 0;
  font-size: 12px;
  color: var(--text-muted);
  width: 100%;
  position: relative;
  z-index: 99;
}

.top-bar-content,
.top-notice-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.live-indicator,
.live-activity-feed {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #00f59b;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 245, 155, 0.6);
  flex-shrink: 0;
  animation: pulse-light 2s infinite ease-in-out;
}

@keyframes pulse-light {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.live-text {
  color: var(--text-secondary, #cbd5e1);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-trust-badges,
.top-notice-bar .trust-points {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.badge-item,
.top-notice-bar .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.badge-item:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .top-trust-badges .badge-item:nth-child(2) {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-trust-badges,
  .top-notice-bar .trust-points {
    display: none;
  }
  .top-bar-content {
    justify-content: center;
  }
}

/* Main Navigation */
.main-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 18, 27, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-crest {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-red), #99001b);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--accent-red-glow);
  transform: rotate(-4deg);
  transition: var(--transition-fast);
}

.brand-logo:hover .logo-crest {
  transform: rotate(0deg) scale(1.05);
}

.logo-crest svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.brand-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 234, 121, 0.55));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.12);
  filter: drop-shadow(0 0 16px rgba(255, 234, 121, 0.85));
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.brand-name span {
  color: var(--accent-red);
}

.game-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-surface-2);
  border: 1px solid rgba(255, 70, 85, 0.4);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-red-light);
  letter-spacing: 0.5px;
}

.game-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-shrink: 0;
}

.nav-item a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-item a:hover,
.nav-item.active a {
  color: #fff;
  background: var(--bg-surface-2);
}

.nav-item.active a {
  border-bottom: 2px solid var(--accent-red);
  color: var(--text-main);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.currency-select, .region-select, .lang-select {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: var(--transition-fast);
}

.currency-select:hover, .region-select:hover, .lang-select:hover {
  border-color: var(--accent-red);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}
.btn-login:hover {
  background: var(--bg-surface-2);
  border-color: var(--text-muted);
}

.btn-signup {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-red), #d62232);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 4px 12px var(--accent-red-glow);
  transition: var(--transition-fast);
}
.btn-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 70, 85, 0.5);
}

/* ==========================================================================
   Hero Header / Breadcrumb & Game Info
   ========================================================================== */
.hero-banner {
  position: relative;
  padding: 48px 0 32px;
  background: radial-gradient(circle at 50% 20%, rgba(255, 70, 85, 0.12) 0%, transparent 65%);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(1.2);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumbs span {
  color: var(--text-dim);
}
.breadcrumbs a:hover {
  color: var(--accent-red);
}

.hero-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-badge-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--accent-red);
  background: rgba(255, 70, 85, 0.1);
  border: 1px solid rgba(255, 70, 85, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-text p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 660px;
  line-height: 1.6;
}

.hero-stats-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-surface-1);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
}

.hero-stat-card .stat-big {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-card .stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-subtle);
}

/* ==========================================================================
   Main Content Layout: 2 Columns (Configurator + Sticky Checkout)
   ========================================================================== */
.boosting-page-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  padding: 40px 0 80px;
  align-items: start;
}

@media (max-width: 1024px) {
  .boosting-page-layout {
    grid-template-columns: 1fr;
  }
}

/* Service Tabs (Rank Boost, Win Boost, Placements, Leveling) */
.service-mode-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

@media (max-width: 640px) {
  .service-mode-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mode-tab-btn {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition-normal);
  text-align: center;
}

.mode-tab-btn .tab-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mode-tab-btn .tab-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mode-tab-btn .tab-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.mode-tab-btn .tab-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.mode-tab-btn:hover {
  background: var(--bg-surface-2);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
}

.mode-tab-btn.active {
  background: linear-gradient(180deg, rgba(255, 70, 85, 0.15) 0%, var(--bg-surface-2) 100%);
  border-color: var(--accent-red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 70, 85, 0.2);
}
.mode-tab-btn.active .tab-icon svg {
  fill: var(--accent-red);
}
.mode-tab-btn.active .tab-badge {
  background: var(--accent-red);
  color: #fff;
}

/* ==========================================================================
   Configurator Card (Eldorado style)
   ========================================================================== */
.config-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  margin-bottom: 28px;
  position: relative;
}

.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
}

.card-heading-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.heading-step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-heading h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
}

.heading-hint {
  font-size: 13px;
  color: var(--text-muted);
}

/* Dual Rank Selector Grid */
.rank-selector-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .rank-selector-grid {
    grid-template-columns: 1fr;
  }
}

.rank-picker-column {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-normal);
  position: relative;
}

.rank-picker-column.active-focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 20px rgba(255, 70, 85, 0.15);
}

.picker-header {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}

.current-rank-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0 20px;
}

.rank-emblem-wrapper {
  position: relative;
  width: 100px;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.6));
}

.rank-emblem-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.rank-emblem-wrapper:hover img {
  transform: scale(1.08);
}

.rank-name-label {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.rank-division-selector {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  width: 100%;
}

.division-btn {
  flex: 1;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.division-btn:hover {
  background: var(--bg-surface-3);
  color: #fff;
}

.division-btn.active {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
  box-shadow: 0 2px 10px var(--accent-red-glow);
}

/* Horizontal Rank Carousel / Carousel selector */
.rank-strip {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
  margin-top: 16px;
  background: var(--bg-surface-2);
  padding: 6px;
  border-radius: var(--radius-sm);
}

.rank-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 2px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
  opacity: 0.6;
}

.rank-strip-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
}

.rank-strip-item.selected {
  opacity: 1;
  background: rgba(255, 70, 85, 0.2);
  box-shadow: inset 0 0 0 1px var(--accent-red);
}

.rank-strip-item img {
  width: 22px;
  height: 22px;
}

/* Selector Divider Arrow */
.rank-divider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  color: var(--accent-red);
}
.rank-divider-arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* RR Points Slider */
.slider-control-group {
  margin-top: 24px;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.slider-value-badge {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-cyan);
  background: rgba(0, 245, 155, 0.1);
  padding: 2px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 245, 155, 0.25);
}

.range-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-surface-3);
  outline: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-red);
  cursor: pointer;
  box-shadow: 0 0 12px var(--accent-red-glow);
  transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Number Stepper (For Wins / Placements) */
.number-stepper-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.stepper-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.stepper-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  box-shadow: 0 0 15px var(--accent-red-glow);
}

.stepper-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}

.stepper-number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stepper-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
}

/* ==========================================================================
   Add-ons & Customization Options (Eldorado style)
   ========================================================================== */
.addons-section {
  margin-top: 30px;
}

.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 640px) {
  .addons-grid {
    grid-template-columns: 1fr;
  }
}

.addon-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-normal);
  user-select: none;
}

.addon-card:hover {
  background: var(--bg-surface-2);
  border-color: rgba(255, 255, 255, 0.2);
}

.addon-card.selected {
  background: rgba(255, 70, 85, 0.1);
  border-color: var(--accent-red);
}

.addon-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.addon-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.addon-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.addon-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--bg-surface-3);
  color: var(--text-muted);
}

.addon-card.selected .addon-badge {
  background: var(--accent-red);
  color: #fff;
}

.addon-badge.free {
  background: rgba(0, 245, 155, 0.15);
  color: var(--accent-cyan);
}

/* Custom Checkbox Indicator */
.custom-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
  margin-left: 12px;
}

.addon-card.selected .custom-checkbox {
  background: var(--accent-red);
  border-color: var(--accent-red);
  box-shadow: 0 0 10px var(--accent-red-glow);
}

.custom-checkbox svg {
  width: 12px;
  height: 12px;
  fill: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition-fast);
}

.addon-card.selected .custom-checkbox svg {
  opacity: 1;
  transform: scale(1);
}

/* Agent Selector Drawer (when agents addon is enabled) */
.agents-picker-wrap {
  margin-top: 16px;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: none;
}
.agents-picker-wrap.visible {
  display: block;
}

.agents-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.agent-chip {
  padding: 6px 14px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.agent-chip:hover {
  background: var(--bg-surface-3);
  color: #fff;
}

.agent-chip.active {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #fff;
  box-shadow: 0 2px 8px var(--accent-red-glow);
}

/* Server Selector Row */
/* Tactical Setup Row: Server */
.tactical-prefs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 640px) {
  .tactical-prefs-grid {
    grid-template-columns: 1fr;
  }
}

.server-selector-row, .flash-selector-row {
  display: flex;
  flex-direction: column;
}

.server-select-box {
  width: 100%;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
}
.server-select-box:focus {
  border-color: var(--accent-red);
}

.flash-toggle-group {
  display: flex;
  gap: 8px;
  height: 100%;
}

.btn-flash-toggle {
  flex: 1;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-flash-toggle:hover {
  background: var(--bg-surface-2);
  color: #fff;
}

.btn-flash-toggle.active {
  background: rgba(255, 70, 85, 0.15);
  border-color: var(--accent-red);
  color: #fff;
}

/* ==========================================================================
   Sticky Checkout Summary Card (Right Column)
   ========================================================================== */
.sticky-checkout-col {
  position: sticky;
  top: 96px;
}

.checkout-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--accent-red);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 14px;
}

.checkout-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
}

.trade-shield-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-cyan);
  background: rgba(0, 245, 155, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 245, 155, 0.3);
}
.trade-shield-badge svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* Order Summary Details */
.summary-rank-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-3);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}

.summary-rank-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-rank-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.summary-rank-labels {
  display: flex;
  flex-direction: column;
}
.summary-rank-labels .type {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}
.summary-rank-labels .name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.summary-arrow svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-red);
}

.summary-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.breakdown-row span:last-child {
  color: #fff;
  font-weight: 600;
}

.eta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 245, 155, 0.08);
  border: 1px solid rgba(0, 245, 155, 0.2);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 13px;
}
.eta-row .eta-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-cyan);
  font-weight: 700;
}
.eta-row .eta-value {
  color: #fff;
  font-weight: 800;
}

/* Pricing Display */
.pricing-container {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.price-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.price-big {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-big .currency-symbol {
  color: var(--accent-red);
  font-size: 26px;
}

.price-old {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--text-dim);
  margin-right: 8px;
}

/* Custom Offer Box in Summary */
.price-custom-container {
  display: block !important;
  background: rgba(15, 23, 36, 0.7);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.price-custom-info .price-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.price-propose-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  font-weight: 800;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
}

.price-propose-badge .propose-icon {
  font-size: 20px;
}

.price-custom-sub {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.4;
}

/* Modal Price Offer Highlighted Input */
.price-offer-field-wrap {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
}

.price-offer-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  font-size: 14px;
}

.required-pill {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.15);
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-input-highlight {
  padding-left: 38px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #fff !important;
  border-color: rgba(0, 229, 255, 0.4) !important;
}

.price-input-highlight:focus {
  border-color: var(--accent-cyan) !important;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.3) !important;
}

/* Action Buttons */
.btn-cta-buy {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #c41829 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px var(--accent-red-glow);
  transition: var(--transition-normal);
  margin-bottom: 12px;
}

.btn-cta-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 70, 85, 0.5);
}

.btn-cta-request {
  width: 100%;
  padding: 14px;
  background: var(--bg-surface-3);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-cta-request:hover {
  background: var(--bg-surface-2);
  border-color: var(--text-muted);
}

/* Trust Guarantee Badges under checkout */
.guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.guarantee-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-cyan);
  flex-shrink: 0;
}

/* ==========================================================================
   Booster Marketplace Section (Live Offers)
   ========================================================================== */
.marketplace-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
}

.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.section-title p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}

.booster-filter-pills {
  display: flex;
  gap: 8px;
}

.filter-pill {
  padding: 6px 14px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill:hover, .filter-pill.active {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
}

.boosters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.booster-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.booster-card:hover {
  border-color: rgba(255, 70, 85, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.booster-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.booster-avatar-wrap {
  position: relative;
  width: 54px;
  height: 54px;
}

.booster-avatar {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--bg-surface-2);
}

.status-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--bg-surface-1);
}
.status-indicator.online {
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
}
.status-indicator.offline {
  background: var(--text-dim);
}

.booster-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.booster-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.verified-icon {
  width: 16px;
  height: 16px;
  fill: var(--accent-cyan);
}

.booster-rank-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--accent-gold);
  font-weight: 600;
}

.booster-rank-sub img {
  width: 16px;
  height: 16px;
}

.booster-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: var(--bg-surface-1);
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  text-align: center;
}

.booster-stat-item .val {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.booster-stat-item .lbl {
  font-size: 11px;
  color: var(--text-muted);
}

.booster-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.b-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--bg-surface-3);
  color: var(--text-muted);
}

.booster-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.booster-price-wrap {
  display: flex;
  flex-direction: column;
}
.booster-price-from {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.booster-price-num {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.btn-hire-booster {
  padding: 8px 16px;
  background: var(--accent-red);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-hire-booster:hover {
  background: #ff6e7b;
}

/* ==========================================================================
   Recent Activity & Verified Community Vouchs
   ========================================================================== */
.activity-section {
  padding: 70px 0;
  background: var(--bg-surface-1);
  border-top: 1px solid var(--border-subtle);
}

.recent-matches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .recent-matches-grid {
    grid-template-columns: 1fr;
  }
}

.match-log-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition-fast);
}

.match-log-card:hover {
  border-color: rgba(255, 70, 85, 0.3);
}

.match-log-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

.match-tag {
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.match-tag.win {
  background: rgba(0, 245, 155, 0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 245, 155, 0.3);
}
.match-tag.duo {
  background: rgba(255, 70, 85, 0.12);
  color: var(--accent-red);
  border: 1px solid rgba(255, 70, 85, 0.3);
}

.match-time {
  color: var(--text-dim);
}

.match-flow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.flow-rank {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
.flow-rank img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.flow-arrow {
  color: var(--accent-red);
  font-weight: 800;
}

.match-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.match-kda {
  color: var(--accent-gold);
  font-weight: 700;
}

/* Community Vouchs */
.community-vouchs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .community-vouchs-row {
    grid-template-columns: 1fr;
  }
}

.vouch-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}

.vouch-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.vouch-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-surface-3);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-red);
}

.vouch-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.vouch-date {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
}

.vouch-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   Trust & Security Grid ("¿Por qué ELO HUNTERS?")
   ========================================================================== */
.trust-section {
  padding: 80px 0;
  background: var(--bg-main);
  border-top: 1px solid var(--border-subtle);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust-card:hover {
  border-color: rgba(255, 70, 85, 0.3);
  transform: translateY(-4px);
}

.trust-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(255, 70, 85, 0.1);
  border: 1px solid rgba(255, 70, 85, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  margin-bottom: 20px;
}

.trust-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.trust-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================================================
   FAQ Section Accordion
   ========================================================================== */
.faq-section {
  padding: 60px 0 80px;
  border-top: 1px solid var(--border-subtle);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
  color: var(--text-muted);
}
.faq-chevron svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
  background: var(--bg-surface-1);
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-surface-1);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

@media (max-width: 840px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a:hover {
  color: var(--accent-red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 30px;
  font-size: 13px;
}

.payment-methods-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
}

.payment-badge {
  background: rgba(0, 112, 186, 0.15);
  border: 1px solid rgba(0, 112, 186, 0.45);
  padding: 4px 12px;
  border-radius: 6px;
  color: #38bdf8;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.checkout-payment-notice {
  background: rgba(0, 112, 186, 0.08);
  border: 1px solid rgba(0, 112, 186, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 16px;
}

.checkout-payment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.payment-title {
  font-size: 12px;
  font-weight: 700;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.paypal-pill {
  background: linear-gradient(135deg, #0079C1, #00457C);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 121, 193, 0.3);
}

.checkout-payment-text {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* ==========================================================================
   Order / Checkout Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-surface-2);
  border: 1px solid rgba(255, 70, 85, 0.4);
  border-radius: var(--radius-lg);
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 70, 85, 0.2);
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--accent-red);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.modal-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-red);
}

.modal-cta-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent-red), #c41829);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-top: 12px;
}
.modal-cta-submit:hover {
  box-shadow: 0 4px 16px var(--accent-red-glow);
}

/* Checkout Authentication Gate */
.eh-auth-checkout-gate {
  margin-top: 14px;
}

.checkout-auth-required-box {
  background: rgba(18, 22, 33, 0.85);
  border: 1px solid rgba(255, 70, 85, 0.35);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.checkout-auth-required-box .auth-gate-icon {
  font-size: 26px;
  margin-bottom: 6px;
}

.checkout-auth-required-box .auth-gate-info h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #fff;
  margin: 0 0 4px;
  font-weight: 700;
}

.checkout-auth-required-box .auth-gate-info p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0 0 14px;
  line-height: 1.4;
}

.btn-gate-login {
  width: 100%;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--accent-red), #b91c1c);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-gate-login:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 18px rgba(255, 70, 85, 0.5);
  transform: translateY(-1px);
}

/* Modal Price Choice Selector */
.price-choice-group {
  margin-bottom: 20px;
  background: rgba(15, 23, 36, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
}

.price-choice-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-choice-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 480px) {
  .price-choice-options {
    grid-template-columns: 1fr;
  }
}

.price-choice-card {
  display: flex;
  align-items: flex-start;
  padding: 12px;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  user-select: none;
}

.price-choice-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.price-choice-card:hover {
  border-color: rgba(255, 70, 85, 0.4);
  background: rgba(255, 70, 85, 0.05);
}

.price-choice-card.active {
  border-color: var(--accent-red);
  background: rgba(255, 70, 85, 0.12);
  box-shadow: 0 0 12px rgba(255, 70, 85, 0.25);
}

.choice-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.choice-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.choice-icon {
  font-size: 16px;
}

.choice-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.choice-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

.choice-desc strong {
  color: var(--accent-cyan);
}

.custom-offer-wrapper {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  animation: fadeIn 0.2s ease-in-out;
}

.custom-offer-wrapper .sub-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.input-with-currency {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-prefix {
  position: absolute;
  left: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-cyan);
  pointer-events: none;
}

.input-with-currency .form-control {
  padding-left: 32px;
  font-size: 15px;
  font-weight: 600;
}

.custom-offer-wrapper .helper-text {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.3;
}

/* ==========================================================================
   Real-Time Chat Widget & Discord Bridge Styles
   ========================================================================== */
#eloChatWidgetRoot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

/* Floating Action Button (Launcher) */
.chat-launcher-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-red), #99001b);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px var(--accent-red-glow), 0 4px 12px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  color: #fff;
}

.chat-launcher-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 70, 85, 0.6);
}

.launcher-icon-wrap {
  width: 28px;
  height: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.launcher-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}

.chat-launcher-btn.chat-open .icon-chat {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

.chat-launcher-btn.chat-open .icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Online pulsing indicator */
.online-indicator-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: 2.5px solid var(--bg-surface-1);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.chat-unread-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  background: var(--accent-gold);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  border: 2px solid var(--bg-surface-1);
}

/* Chat Window Box */
.chat-window {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 370px;
  height: 520px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 120px);
  background: var(--bg-surface-2);
  border: 1px solid rgba(255, 70, 85, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 70, 85, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.96);
  transform-origin: bottom right;
  transition: all var(--transition-smooth);
}

.chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Header */
.chat-window-header {
  background: linear-gradient(90deg, var(--bg-surface-3), var(--bg-surface-1));
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-staff-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.staff-avatar-wrap {
  position: relative;
  width: 36px;
  height: 36px;
}

.staff-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.staff-status-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: 2px solid var(--bg-surface-1);
}

.staff-text-col {
  display: flex;
  flex-direction: column;
}

.staff-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.discord-bridge-tag {
  background: rgba(88, 101, 242, 0.2);
  border: 1px solid rgba(88, 101, 242, 0.4);
  color: #7983f5;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.staff-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-header-btn,
.chat-minimize-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.chat-header-btn:hover,
.chat-minimize-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Messages Body */
.chat-messages-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-main);
}

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 82%;
  animation: fadeInMsg 0.2s ease;
}

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

.msg-author-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.badge-role {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.msg-time {
  font-size: 10px;
  color: var(--text-dim);
}

.msg-bubble {
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 14px;
  word-break: break-word;
}

/* Booster / Staff Message (Left aligned) */
.msg-booster {
  align-self: flex-start;
}
.msg-booster .badge-role {
  color: var(--accent-red);
}
.msg-booster .msg-bubble {
  background: var(--bg-surface-3);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  border-bottom-left-radius: 4px;
}

/* Client Message (Right aligned) */
.msg-client {
  align-self: flex-end;
}
.msg-client .msg-author-badge {
  flex-direction: row-reverse;
}
.msg-client .badge-role {
  color: var(--accent-cyan);
}
.msg-client .msg-bubble {
  background: linear-gradient(135deg, var(--accent-red), #b51525);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px var(--accent-red-glow);
}

/* Closed Ticket Message */
.msg-closed {
  align-self: center !important;
  max-width: 90% !important;
  margin: 8px 0;
}
.msg-closed .msg-author-badge {
  justify-content: center;
}
.msg-closed .badge-role {
  color: #ffb800 !important;
}
.msg-closed .msg-bubble {
  background: rgba(255, 184, 0, 0.09) !important;
  border: 1px solid rgba(255, 184, 0, 0.4) !important;
  color: #ffda79 !important;
  font-size: 12.5px;
  line-height: 1.55;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.08);
  text-align: center;
}

/* Typing Indicator */
.typing-box {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  font-size: 11px;
  color: var(--text-dim);
  background: var(--bg-main);
}
.typing-dot {
  width: 5px;
  height: 5px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Footer / Input row */
.chat-input-row {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: var(--bg-surface-1);
  border-top: 1px solid var(--border-subtle);
  gap: 8px;
}

.chat-text-field {
  flex: 1;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 10px 16px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition-fast);
}
.chat-text-field:focus {
  border-color: var(--accent-red);
}

.chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-red);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.chat-send-btn:hover {
  background: #ff6e7b;
  transform: scale(1.05);
}
.chat-send-btn svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  margin-left: 2px;
}

.chat-channel-footnote {
  text-align: center;
  font-size: 10px;
  color: var(--text-dim);
  padding: 6px 0;
  background: var(--bg-surface-1);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* ==========================================================================
   Accounts Marketplace Section
   ========================================================================== */
.accounts-section {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, rgba(20, 26, 35, 0.4) 0%, rgba(15, 20, 27, 0.9) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.accounts-badge-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--accent-red);
  background: rgba(255, 70, 85, 0.1);
  border: 1px solid rgba(255, 70, 85, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.accounts-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.account-filter-pill {
  background: var(--bg-surface-1);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.account-filter-pill:hover {
  color: #fff;
  border-color: var(--text-muted);
  background: var(--bg-surface-2);
}

.account-filter-pill.active {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
  box-shadow: 0 2px 10px var(--accent-red-glow);
}

/* Accounts Trust Bar */
.accounts-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0 40px;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

@media (max-width: 900px) {
  .accounts-trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .accounts-trust-bar {
    grid-template-columns: 1fr;
  }
}

.acc-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acc-trust-icon {
  font-size: 22px;
  background: rgba(255, 255, 255, 0.04);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.acc-trust-item strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
}

.acc-trust-item small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* Accounts Grid */
.accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 24px;
}

.account-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.account-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 70, 85, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 70, 85, 0.1);
}

.acc-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}

.acc-rank-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acc-rank-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.acc-rank-title {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.acc-level-sub {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.acc-promo-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  background: rgba(255, 70, 85, 0.15);
  color: var(--accent-red);
  border: 1px solid rgba(255, 70, 85, 0.3);
}

.acc-promo-tag.ascendant {
  background: rgba(30, 227, 132, 0.15);
  color: #1ee384;
  border-color: rgba(30, 227, 132, 0.35);
}

.acc-promo-tag.immortal {
  background: rgba(255, 44, 85, 0.16);
  color: #ff4655;
  border-color: rgba(255, 44, 85, 0.38);
}

.acc-promo-tag.skins {
  background: rgba(255, 184, 0, 0.15);
  color: #ffb800;
  border-color: rgba(255, 184, 0, 0.3);
}

.acc-promo-tag.radiant {
  background: rgba(255, 234, 121, 0.15);
  color: #ffea79;
  border-color: rgba(255, 234, 121, 0.4);
}

.acc-promo-tag.out-of-stock {
  background: rgba(255, 70, 85, 0.18);
  color: #ff6b76;
  border-color: rgba(255, 70, 85, 0.45);
  box-shadow: 0 0 10px rgba(255, 70, 85, 0.15);
}

.account-card.acc-card-out-of-stock {
  border-color: rgba(255, 234, 121, 0.25);
  background: linear-gradient(180deg, rgba(25, 23, 36, 0.9) 0%, rgba(15, 20, 30, 0.95) 100%);
}

.account-card.acc-card-out-of-stock:hover {
  border-color: rgba(255, 234, 121, 0.5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 234, 121, 0.15);
}

.acc-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.acc-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.acc-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.acc-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #9aa8ba;
  line-height: 1.4;
  font-weight: 500;
}

.acc-features-list .check-svg {
  width: 17px;
  height: 17px;
  stroke: #00e5a3;
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(0, 229, 163, 0.4));
}

.acc-skins-block {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.acc-spec-title {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.acc-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.acc-skin-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.acc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.acc-pricing {
  display: flex;
  flex-direction: column;
}

.acc-old-price {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.acc-current-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.acc-currency {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-red);
}

.acc-num {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.btn-buy-account {
  background: linear-gradient(135deg, var(--accent-red), #d62232);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--accent-red-glow);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-buy-account:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 70, 85, 0.45);
}

.btn-ask-account {
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(88, 101, 242, 0.35);
  transition: var(--transition-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-ask-account:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #6875f5, #515ee0);
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.55);
  color: #fff;
}

/* ==========================================================================
   Immortal Rank Selection Modal
   ========================================================================== */
.immortal-select-modal-box {
  max-width: 860px;
  width: 95%;
  background: linear-gradient(180deg, #121722 0%, #0c1017 100%);
  border: 1px solid rgba(255, 70, 85, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(255, 70, 85, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.immortal-modal-badge img {
  filter: drop-shadow(0 0 16px rgba(255, 70, 85, 0.6));
  animation: pulse-rank 3s ease-in-out infinite alternate;
}

@keyframes pulse-rank {
  0% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(255, 70, 85, 0.5)); }
  100% { transform: scale(1.06); filter: drop-shadow(0 0 22px rgba(255, 70, 85, 0.85)); }
}

.immortal-divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .immortal-divisions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.immortal-tier-card {
  background: rgba(18, 26, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  cursor: pointer;
}

.immortal-tier-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 70, 85, 0.55);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.65), 0 0 22px rgba(255, 70, 85, 0.25);
}

.immortal-tier-card.featured {
  background: linear-gradient(180deg, rgba(255, 70, 85, 0.12) 0%, rgba(18, 26, 38, 0.95) 100%);
  border-color: rgba(255, 70, 85, 0.4);
}

.immortal-tier-card.featured:hover {
  border-color: rgba(255, 70, 85, 0.75);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 28px rgba(255, 70, 85, 0.35);
}

.imm-tier-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.imm-tier-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.5));
}

.imm-tier-title-wrap {
  display: flex;
  flex-direction: column;
}

.imm-tier-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.imm-tier-price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-red);
  margin-top: 2px;
}

.imm-tier-price-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #00e5a3;
  background: rgba(0, 229, 163, 0.12);
  border: 1px solid rgba(0, 229, 163, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.acc-offer-badge {
  font-size: 10px;
  font-weight: 800;
  color: #00e5a3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.acc-offer-cta {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.custom-price-box {
  background: rgba(18, 26, 38, 0.8);
  border: 1px solid rgba(255, 70, 85, 0.4);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.custom-price-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}

.custom-price-label-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-price-required {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-red);
  background: rgba(255, 70, 85, 0.16);
  border: 1px solid rgba(255, 70, 85, 0.35);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control-price {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #fff !important;
}

.btn-select-immortal {
  margin-top: auto;
  padding: 11px 16px;
  background: linear-gradient(135deg, var(--accent-red), #d62232);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 14px var(--accent-red-glow);
}

.btn-select-immortal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 70, 85, 0.5);
}

/* ==========================================================================
   Coaching Page Styles
   ========================================================================== */
.coaching-section {
  padding: 50px 0 90px;
  position: relative;
}

.coaching-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.coaching-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 70, 85, 0.12);
  border: 1px solid rgba(255, 70, 85, 0.35);
  color: var(--accent-red);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.coaching-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.coaching-title span {
  color: var(--accent-red);
  text-shadow: 0 0 20px rgba(255, 70, 85, 0.5);
}

.coaching-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Coaching Grid */
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 70px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .coaching-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

.coaching-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.coaching-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition-fast);
}

.coaching-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 70, 85, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 70, 85, 0.15);
}

.coaching-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

/* Popular Featured Card */
.coaching-card.popular {
  border-color: var(--accent-red);
  background: linear-gradient(180deg, rgba(255, 70, 85, 0.08) 0%, var(--bg-surface-1) 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 70, 85, 0.2);
  transform: scale(1.03);
  z-index: 2;
}

@media (max-width: 992px) {
  .coaching-card.popular {
    transform: none;
  }
}

.coaching-card.popular:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 70, 85, 0.35);
}

@media (max-width: 992px) {
  .coaching-card.popular:hover {
    transform: translateY(-6px);
  }
}

.coaching-card-tag {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 70, 85, 0.2);
  border: 1px solid var(--accent-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.coaching-card-tag.pro {
  background: rgba(168, 85, 247, 0.2);
  border-color: #a855f7;
  color: #d8b4fe;
}

.coaching-card-header {
  margin-bottom: 20px;
}

.coaching-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.coaching-card.popular .coaching-card-icon {
  background: rgba(255, 70, 85, 0.15);
  border-color: rgba(255, 70, 85, 0.4);
}

.coaching-card.pro .coaching-card-icon {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.4);
}

.coaching-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.coaching-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  min-height: 40px;
}

/* Price block */
.coaching-pricing-box {
  background: rgba(10, 14, 23, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 24px;
}

.coaching-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.coaching-price-val {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  color: #fff;
}

.coaching-price-unit {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.coaching-price-discount {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.coaching-price-old {
  color: var(--text-dim);
  text-decoration: line-through;
}

.coaching-badge-save {
  background: rgba(30, 227, 132, 0.15);
  border: 1px solid rgba(30, 227, 132, 0.4);
  color: #1ee384;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
}

.coaching-duration-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-top: 6px;
}

/* Includes List */
.coaching-includes-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  margin-bottom: 14px;
}

.coaching-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coaching-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.45;
}

.coaching-check-svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-red);
  flex-shrink: 0;
  margin-top: 1px;
}

.coaching-card.popular .coaching-check-svg {
  fill: #ff4655;
}

.coaching-card.pro .coaching-check-svg {
  fill: #a855f7;
}

/* CTA Button */
.btn-hire-coach {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.5px;
}

.btn-hire-coach:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  transform: translateY(-2px);
}

.coaching-card.popular .btn-hire-coach {
  background: linear-gradient(135deg, var(--accent-red), #c41829);
  border: none;
  box-shadow: 0 4px 15px var(--accent-red-glow);
}

.coaching-card.popular .btn-hire-coach:hover {
  box-shadow: 0 6px 22px rgba(255, 70, 85, 0.5);
  transform: translateY(-2px);
}

.coaching-card.pro .btn-hire-coach {
  background: linear-gradient(135deg, #a855f7, #7e22ce);
  border: none;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.35);
}

.coaching-card.pro .btn-hire-coach:hover {
  box-shadow: 0 6px 22px rgba(168, 85, 247, 0.55);
  transform: translateY(-2px);
}

/* Steps / Workflow */
.coaching-steps-box {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 50px;
}

.coaching-steps-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 34px;
}

.coaching-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

@media (max-width: 768px) {
  .coaching-steps-grid {
    grid-template-columns: 1fr;
  }
}

.coaching-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.coaching-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 70, 85, 0.15);
  border: 2px solid var(--accent-red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.coaching-step-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.coaching-step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   ELO HUNTERS - Authentication & User Profile Design System
   ========================================================================== */

.auth-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-auth-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-auth-login:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-auth-register {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--accent-red), #d62232);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--accent-red-glow);
  transition: all 0.2s ease;
}

.btn-auth-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 70, 85, 0.5);
}

/* User Navbar Profile & Dropdown */
.user-menu-dropdown-wrapper {
  position: relative;
}

.user-profile-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px 4px 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s ease;
}

.user-profile-nav-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.user-avatar-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4655, #9d4edd);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.user-avatar-circle.large {
  width: 44px;
  height: 44px;
  font-size: 18px;
}

.user-nav-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.user-nav-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.user-nav-role {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 1px 6px;
  border-radius: 4px;
  margin-top: 2px;
}

.role-badge-admin {
  background: rgba(255, 70, 85, 0.15);
  color: #ff4655;
  border: 1px solid rgba(255, 70, 85, 0.3);
}

.role-badge-booster {
  background: rgba(157, 78, 221, 0.15);
  color: #c77dff;
  border: 1px solid rgba(157, 78, 221, 0.3);
}

.role-badge-user {
  background: rgba(0, 245, 155, 0.15);
  color: #00f59b;
  border: 1px solid rgba(0, 245, 155, 0.3);
}

.dropdown-chevron {
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.user-menu-dropdown-wrapper .user-dropdown-menu.show + .user-profile-nav-btn .dropdown-chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu Popup */
.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 260px;
  background: var(--bg-surface-1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(14px);
  padding: 14px;
  display: none;
  z-index: 1000;
  animation: fadeInDown 0.2s ease;
}

.user-dropdown-menu.show {
  display: block;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-user-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
}

.dropdown-username {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.dropdown-email {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
  word-break: break-all;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  text-align: left;
  transition: all 0.15s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.dropdown-item.highlight-dashboard {
  color: #ff4655;
  background: rgba(255, 70, 85, 0.08);
  font-weight: 700;
}

.dropdown-item.highlight-dashboard:hover {
  background: rgba(255, 70, 85, 0.18);
}

.dropdown-logout-btn {
  color: #ff6e7b;
}

.dropdown-logout-btn:hover {
  background: rgba(255, 70, 85, 0.1);
}

/* ==========================================================================
   Auth Modal (Login & Register)
   ========================================================================== */

.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.auth-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.auth-modal-container {
  background: var(--bg-surface-1);
  border: 1px solid rgba(255, 70, 85, 0.35);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 70, 85, 0.12);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 32px 28px 24px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-overlay.open .auth-modal-container {
  transform: scale(1);
}

.auth-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s ease;
}

.auth-close-btn:hover {
  color: #ff4655;
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.auth-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.auth-brand-badge img {
  width: 20px;
  height: 20px;
}

.auth-brand-badge span strong {
  color: #ff4655;
}

.auth-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 4px;
}

.auth-modal-header p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Tabs */
.auth-tabs {
  display: flex;
  background: var(--bg-surface-2);
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  border: 1px solid var(--border-subtle);
}

.auth-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab-btn:hover {
  color: #fff;
}

.auth-tab-btn.active {
  background: rgba(255, 70, 85, 0.15);
  color: #ff4655;
  border: 1px solid rgba(255, 70, 85, 0.3);
}

/* Form panels */
.auth-form-panel {
  display: none;
}

.auth-form-panel.active {
  display: block;
}

.auth-form-group {
  margin-bottom: 16px;
}

.auth-form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.req-star {
  color: #ff4655;
}

.opt-pill {
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  padding: 1px 6px;
  border-radius: 4px;
}

.auth-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-icon {
  position: absolute;
  left: 12px;
  font-size: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

.auth-input-wrapper input {
  width: 100%;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 11px 12px 11px 36px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input-wrapper input:focus {
  border-color: #ff4655;
  box-shadow: 0 0 10px rgba(255, 70, 85, 0.25);
}

.auth-toggle-pwd {
  position: absolute;
  right: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  opacity: 0.7;
}

.auth-toggle-pwd:hover {
  opacity: 1;
}

.auth-hint {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
  display: block;
}

.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-readonly-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text-muted);
  font-size: 13px;
  outline: none;
}

/* Submit button */
.auth-submit-btn {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--accent-red), #d62232);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255, 70, 85, 0.35);
  margin-top: 8px;
  transition: all 0.2s ease;
}

.auth-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 70, 85, 0.55);
}

.auth-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-submit-register {
  background: linear-gradient(135deg, #ff4655, #9d4edd);
}

/* Alerts */
.auth-alert {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.auth-alert.alert-error {
  background: rgba(255, 70, 85, 0.15);
  border: 1px solid rgba(255, 70, 85, 0.4);
  color: #ff6e7b;
}

.auth-alert.alert-success {
  background: rgba(0, 245, 155, 0.15);
  border: 1px solid rgba(0, 245, 155, 0.4);
  color: #00f59b;
}

.auth-modal-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.shield-badge {
  font-size: 11px;
  color: var(--text-dim);
}

.auth-aux-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
  margin-bottom: 14px;
}

.auth-aux-row.center {
  justify-content: center;
}

.auth-link-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 2px;
  transition: color 0.15s ease;
}

.auth-link-btn:hover {
  color: #ff4655;
  text-decoration: underline;
}

.auth-info-box {
  background: rgba(255, 70, 85, 0.08);
  border: 1px solid rgba(255, 70, 85, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.5;
  color: #e2e8f0;
  margin-bottom: 18px;
}

/* Orders Modal */
.orders-modal-container {
  max-width: 680px;
}

.user-orders-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 4px;
}

.user-order-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: border-color 0.2s;
}

.user-order-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.order-card-id {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #00f59b;
  margin-right: 10px;
}

.order-card-date {
  font-size: 12px;
  color: var(--text-muted);
}

.order-status-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
}

.order-status-pill.status-pending {
  background: rgba(255, 200, 59, 0.15);
  color: #ffc83b;
  border: 1px solid rgba(255, 200, 59, 0.35);
}

.order-status-pill.status-progress {
  background: rgba(0, 245, 155, 0.15);
  color: #00f59b;
  border: 1px solid rgba(0, 245, 155, 0.35);
}

.order-status-pill.status-completed {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.order-status-pill.status-cancelled {
  background: rgba(255, 70, 85, 0.15);
  color: #ff4655;
  border: 1px solid rgba(255, 70, 85, 0.35);
}

.order-card-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.order-detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.detail-value {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-top: 2px;
}

.detail-value.highlight {
  color: #ff6e7b;
}

.detail-value.price {
  color: #00f59b;
}

.auth-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 70, 85, 0.2);
  border-top-color: #ff4655;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

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

/* ==========================================================================
   ELO HUNTERS - Dedicated Order Chat Room (Web-to-Web + Discord)
   ========================================================================== */

.order-chat-window {
  background: var(--bg-surface-1);
  border: 1px solid rgba(0, 245, 155, 0.35);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 245, 155, 0.12);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  height: 680px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.order-chat-header {
  padding: 16px 20px;
  background: var(--bg-surface-2);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-chat-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.order-chat-brand img {
  width: 22px;
  height: 22px;
}

.order-id-badge {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.order-chat-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.order-chat-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-sync-tag {
  font-size: 11px;
  font-weight: 700;
  color: #00f59b;
  background: rgba(0, 245, 155, 0.1);
  border: 1px solid rgba(0, 245, 155, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Messages container */
.order-chat-messages {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 245, 155, 0.03), transparent 60%);
}

.chat-loading-notice, .chat-empty-hint {
  text-align: center;
  padding: 30px 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.chat-system-banner {
  background: rgba(16, 22, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #00f59b;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.chat-system-banner .banner-icon {
  font-size: 20px;
  line-height: 1;
}

.chat-system-banner .banner-text strong {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #00f59b;
  display: block;
  margin-bottom: 4px;
}

.chat-system-banner .banner-text p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Chat rows & bubbles */
.order-chat-row {
  display: flex;
  width: 100%;
}

.order-chat-row.row-me {
  justify-content: flex-end;
}

.order-chat-row.row-other {
  justify-content: flex-start;
}

.order-chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  position: relative;
  word-break: break-word;
}

.order-chat-bubble.bubble-me {
  background: linear-gradient(135deg, rgba(0, 245, 155, 0.15), rgba(0, 168, 107, 0.2));
  border: 1px solid rgba(0, 245, 155, 0.35);
  color: #fff;
  border-bottom-right-radius: 2px;
}

.order-chat-bubble.bubble-other {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  border-bottom-left-radius: 2px;
}

.order-chat-bubble.sender-booster {
  border-color: rgba(157, 78, 221, 0.4);
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.12), var(--bg-surface-2));
}

.order-chat-bubble.sender-admin {
  border-color: rgba(255, 70, 85, 0.4);
  background: linear-gradient(135deg, rgba(255, 70, 85, 0.12), var(--bg-surface-2));
}

.bubble-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.bubble-sender {
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}

.chat-role-badge {
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  text-transform: uppercase;
}

.chat-role-badge.role-admin {
  background: rgba(255, 70, 85, 0.2);
  color: #ff4655;
  border: 1px solid rgba(255, 70, 85, 0.35);
}

.chat-role-badge.role-booster {
  background: rgba(157, 78, 221, 0.2);
  color: #c77dff;
  border: 1px solid rgba(157, 78, 221, 0.35);
}

.chat-role-badge.role-client {
  background: rgba(0, 245, 155, 0.15);
  color: #00f59b;
  border: 1px solid rgba(0, 245, 155, 0.3);
}

.chat-source-badge {
  font-size: 9px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  padding: 1px 4px;
  border-radius: 3px;
}

.chat-source-badge.web {
  color: #00f59b;
}

.bubble-text {
  font-size: 13px;
  color: #f5f6fa;
}

.bubble-footer {
  text-align: right;
  margin-top: 4px;
}

.bubble-time {
  font-size: 10px;
  color: var(--text-muted);
}

/* Typing Indicator */
.order-chat-typing {
  font-size: 11px;
  color: #00f59b;
  font-style: italic;
  padding: 4px 20px;
  background: transparent;
}

/* Quick Tags */
.order-chat-quick-tags {
  display: flex;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-surface-2);
  border-top: 1px solid var(--border-subtle);
  overflow-x: auto;
  white-space: nowrap;
}

.quick-tag-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.quick-tag-btn:hover {
  background: rgba(0, 245, 155, 0.12);
  color: #00f59b;
  border-color: rgba(0, 245, 155, 0.3);
}

/* Input Bar */
.order-chat-input-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-surface-1);
  border-top: 1px solid var(--border-subtle);
}

.order-chat-input-bar input {
  flex: 1;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.order-chat-input-bar input:focus {
  border-color: #00f59b;
  box-shadow: 0 0 10px rgba(0, 245, 155, 0.25);
}

.order-chat-send-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #00f59b, #00b368);
  color: #0b0d13;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.order-chat-send-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 245, 155, 0.4);
}

/* ==========================================================================
   PayPal Real Payment Modal & Dashboard Actions
   ========================================================================== */

/* Button in User Order Card */
.btn-pay-paypal-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffc439 0%, #ffaa00 100%);
  color: #002244;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 3px 12px rgba(255, 196, 57, 0.35);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-pay-paypal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 196, 57, 0.55);
  filter: brightness(1.05);
  color: #00142b;
}

.btn-pay-paypal-card svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Modal Overlay */
.eh-pay-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 15, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.eh-pay-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.eh-pay-modal-box {
  background: linear-gradient(180deg, #161922 0%, #0d0f15 100%);
  border: 1px solid rgba(255, 196, 57, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 196, 57, 0.15);
  border-radius: var(--radius-lg, 12px);
  max-width: 540px;
  width: 100%;
  padding: 28px 24px;
  position: relative;
  transform: scale(0.94);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: #f5f6fa;
  font-family: var(--font-main, 'Inter', sans-serif);
}

.eh-pay-modal-overlay.open .eh-pay-modal-box {
  transform: scale(1);
}

.eh-pay-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}

.eh-pay-modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Header */
.eh-pay-header {
  text-align: center;
  margin-bottom: 20px;
}

.eh-pay-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 112, 186, 0.2), rgba(255, 196, 57, 0.2));
  border: 2px solid rgba(255, 196, 57, 0.5);
  border-radius: 50%;
  margin-bottom: 12px;
  box-shadow: 0 0 20px rgba(255, 196, 57, 0.25);
}

.eh-pay-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 0 0 6px;
}

.eh-pay-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Order Summary Card */
.eh-pay-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md, 8px);
  padding: 14px 16px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eh-pay-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.eh-pay-summary-label {
  color: var(--text-muted);
}

.eh-pay-summary-value {
  font-weight: 700;
  color: #fff;
}

.eh-pay-summary-value.highlight-price {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #ffc439;
}

/* Big Golden PayPal Button */
.eh-paypal-cta-wrap {
  margin-bottom: 20px;
  text-align: center;
}

.eh-paypal-big-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #ffc439 0%, #f4a200 100%);
  color: #001c38;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.6px;
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  border: 2px solid #ffe599;
  box-shadow: 0 6px 25px rgba(255, 196, 57, 0.45);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.eh-paypal-big-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 196, 57, 0.65);
  filter: brightness(1.06);
  color: #000f20;
}

.eh-paypal-big-btn:active {
  transform: translateY(0);
}

/* Instructions Step-by-Step Box */
.eh-pay-steps-box {
  background: rgba(0, 112, 186, 0.08);
  border: 1px solid rgba(0, 112, 186, 0.25);
  border-radius: var(--radius-md, 8px);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.eh-pay-steps-title {
  font-size: 12px;
  font-weight: 800;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.eh-pay-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.45;
  color: #e2e8f0;
}

.eh-pay-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.eh-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

/* Concept Highlight & Copy */
.eh-concept-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px dashed rgba(255, 196, 57, 0.6);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffc439;
  font-size: 13px;
  margin: 0 2px;
}

.eh-copy-btn {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  border-radius: 3px;
  padding: 2px 6px;
  font-size: 11px;
  cursor: pointer;
  transition: background 0.15s;
}

.eh-copy-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Secondary Actions Footer */
.eh-pay-footer-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.eh-pay-btn-secondary {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  padding: 10px 14px;
  border-radius: var(--radius-sm, 6px);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.eh-pay-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.eh-pay-btn-chat {
  background: rgba(0, 245, 155, 0.1);
  border-color: rgba(0, 245, 155, 0.35);
  color: #00f59b;
}

.eh-pay-btn-chat:hover {
  background: rgba(0, 245, 155, 0.2);
  color: #fff;
  border-color: rgba(0, 245, 155, 0.6);
}




