/* ============================================================
   BEJOCASINO — PAGE-SPECIFIC STYLES
   All inner page components
   ============================================================ */

/* ---- Alert Messages ---- */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}
.alert-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* ---- Section Utilities ---- */
.section-padding { padding: 80px 0; }
.bg-dark-alt { background: var(--bg-surface); }
.lead { font-size: 17px; color: var(--text-secondary); line-height: 1.7; }
.mt-2 { margin-top: 8px; }
.mt-5 { margin-top: 20px; }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.breadcrumb-item { display: flex; align-items: center; gap: 8px; }
.breadcrumb-item a { color: var(--text-secondary); transition: color 0.2s; }
.breadcrumb-item a:hover { color: var(--text-gold); }
.breadcrumb-item:not(:last-child)::after { content: '/'; color: var(--text-muted); }
.breadcrumb-item.active { color: var(--text-gold); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}
.contact-info-col h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-info-col > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-info-items { display: flex; flex-direction: column; gap: 0; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-info-item:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold-600);
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.contact-info-text p,
.contact-info-text a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.contact-info-text a:hover { color: var(--text-gold); }
.contact-social { margin-top: 28px; }
.contact-social h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  transition: all 0.25s;
}
.social-link:hover {
  background: rgba(201,162,39,0.1);
  border-color: var(--border-gold);
  color: var(--text-gold);
  transform: translateY(-2px);
}
.contact-form-col { }
.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form-box h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-form-box > p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-control {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--border-gold-strong);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-checkbox input[type="checkbox"] { margin-top: 3px; accent-color: var(--gold-600); flex-shrink: 0; }
.checkbox-label { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.checkbox-label a { color: var(--text-gold); }
.form-submit { margin-top: 4px; }
.btn-full { width: 100%; justify-content: center; }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }
.contact-faq { padding: 60px 0; }
.contact-faq-inner { max-width: 800px; margin: 0 auto; }
.affiliate-contact-box {
  background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, rgba(201,162,39,0.03) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}
.affiliate-contact-box h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.affiliate-contact-box p { color: var(--text-secondary); margin-bottom: 24px; }
.checkbox-group { display: flex; flex-direction: column; gap: 8px; }

/* ============================================================
   AFFILIATE PAGE
   ============================================================ */
.affiliate-hero {
  padding: 80px 0 60px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,162,39,0.1) 0%, transparent 70%);
  text-align: center;
}
.affiliate-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.affiliate-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}
.affiliate-stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.aff-stat { text-align: center; }
.aff-stat-number {
  font-size: 36px;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.aff-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.affiliate-form-section { padding: 80px 0; }
.affiliate-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.affiliate-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.affiliate-form-wrapper h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-gold);
}
.affiliate-form-wrapper > p { color: var(--text-secondary); font-size: 14px; margin-bottom: 28px; }
.affiliate-form { display: flex; flex-direction: column; }
.affiliate-advantages { display: flex; flex-direction: column; gap: 0; }
.affiliate-advantages h2 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 14px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.25s, transform 0.25s;
}
.advantage-card:hover { border-color: var(--border-gold); transform: translateX(4px); }
.adv-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-600);
  flex-shrink: 0;
}
.advantage-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.advantage-item p { font-size: 13px; color: var(--text-secondary); }
.commission-structure { padding: 60px 0; background: var(--bg-surface); }
.commission-table-wrapper { overflow-x: auto; }
.commission-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.commission-table th {
  background: rgba(201,162,39,0.1);
  color: var(--text-gold);
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid var(--border-gold);
}
.commission-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.commission-table tr:hover td { background: rgba(255,255,255,0.02); }
.commission-note { font-size: 13px; color: var(--text-muted); margin-top: 16px; }
.how-it-works { padding: 80px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.step-item { text-align: center; position: relative; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #000;
  margin: 0 auto 16px;
}
.step-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--text-secondary); }
.step-arrow {
  position: absolute;
  right: -20px;
  top: 20px;
  color: var(--text-muted);
  font-size: 20px;
}
.affiliate-banner-section { padding: 80px 0; }
.affiliate-faq { padding: 60px 0; background: var(--bg-surface); }
.affiliate-advantages .advantage-item { flex: 1; }

/* ============================================================
   CASINO / GAMES PAGES
   ============================================================ */
.casino-hero {
  padding: 80px 0 60px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,162,39,0.1) 0%, transparent 70%);
}
.casino-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 16px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.casino-hero p { font-size: 17px; color: var(--text-secondary); max-width: 650px; margin-bottom: 28px; }
.casino-categories { padding: 60px 0; }
.casino-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.casino-cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.casino-cat-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.cat-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.casino-cat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.casino-cat-card p { font-size: 13px; color: var(--text-secondary); }
.slots-section { padding: 80px 0; }
.popular-slots { padding: 60px 0; background: var(--bg-surface); }
.games-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(201,162,39,0.1);
  border-color: var(--border-gold);
  color: var(--text-gold);
}
.seo-content { padding: 60px 0; }
.seo-content-inner { max-width: 900px; }
.seo-content h2 { font-size: 24px; font-weight: 800; margin-bottom: 16px; }
.seo-content h3 { font-size: 18px; font-weight: 700; margin: 28px 0 12px; color: var(--text-gold); }
.seo-content p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.seo-content ul { list-style: disc; padding-left: 24px; color: var(--text-secondary); margin-bottom: 16px; }
.seo-content ul li { margin-bottom: 8px; line-height: 1.7; }

/* ---- Game Detail Page ---- */
.game-detail-section { padding: 80px 0; }
.game-detail-grid { display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: start; }
.game-detail-sidebar { position: sticky; top: 100px; }
.game-detail-thumb {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.game-detail-thumb img { width: 100%; display: block; }
.game-detail-stats {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 16px;
}
.detail-stat { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border-subtle); }
.detail-stat:last-child { border-bottom: none; }
.detail-stat span:first-child { font-size: 13px; color: var(--text-muted); }
.detail-stat span:last-child { font-size: 14px; font-weight: 700; color: var(--text-gold); }
.game-cta-buttons { display: flex; flex-direction: column; gap: 10px; }
.btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--grad-gold);
  color: #000;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-md);
  transition: all 0.25s;
}
.btn-play:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.game-detail-info { }
.game-detail-header { margin-bottom: 32px; }
.game-provider {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.game-detail-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 12px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.game-detail-header p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }
.game-description { margin-bottom: 40px; }
.game-description h2 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.game-description p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.game-description h3 { font-size: 18px; font-weight: 700; margin: 24px 0 12px; color: var(--text-gold); }
.feature-list { list-style: none; padding: 0; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.feature-item:last-child { border-bottom: none; }
.feature-item i { color: var(--gold-600); margin-top: 2px; flex-shrink: 0; }
.feature-item span { font-size: 14px; color: var(--text-secondary); }
.game-volatility { margin-bottom: 32px; }
.game-volatility h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.volatility-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.volatility-card i { font-size: 28px; color: var(--gold-600); }
.volatility-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.volatility-card p { font-size: 13px; color: var(--text-secondary); }
.rtp-analysis { margin-bottom: 32px; }
.rtp-analysis h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.rtp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.rtp-bar { background: var(--bg-elevated); border-radius: var(--radius-full); height: 10px; margin: 16px 0 8px; overflow: hidden; }
.rtp-fill { height: 100%; background: var(--grad-gold); border-radius: var(--radius-full); transition: width 1s ease; }
.rtp-note { font-size: 12px; color: var(--text-muted); }
.paytable { margin-bottom: 32px; }
.paytable h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.paytable-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.paytable-table th { background: rgba(201,162,39,0.1); color: var(--text-gold); padding: 12px 16px; text-align: left; font-weight: 700; border-bottom: 1px solid var(--border-gold); }
.paytable-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-subtle); color: var(--text-secondary); }
.paytable-table tr:hover td { background: rgba(255,255,255,0.02); }
.strategy-list { list-style: none; padding: 0; }
.strategy-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border-subtle); }
.strategy-list li:last-child { border-bottom: none; }
.strategy-list li i { color: var(--gold-600); margin-top: 2px; flex-shrink: 0; }
.similar-games { padding: 60px 0; background: var(--bg-surface); }
.sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 16px;
}
.sidebar-box h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--text-gold); }
.game-page-intro { padding: 60px 0; }
.game-page-section { padding: 60px 0; }
.game-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.game-variants-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.game-variant-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.25s;
}
.game-variant-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.variant-icon { font-size: 32px; margin-bottom: 12px; }
.variant-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-gold);
  margin-bottom: 10px;
}
.variant-stats { display: flex; gap: 16px; margin-top: 12px; }
.p-stat { font-size: 12px; color: var(--text-muted); }
.p-stat span { display: block; font-size: 13px; font-weight: 700; color: var(--text-primary); }

/* ---- Game Thumbnails (specific game classes) ---- */
.gate-olympus-big, .gate-olympus, .sweet-bonanza, .big-bass, .wolf-gold,
.starlight, .book-dead, .starburst, .gonzos, .dog-house, .fruit-party,
.reactoonz, .mega-moolah, .age-gods, .gems-bonanza, .rulet-thumb,
.blackjack-thumb, .baccarat-thumb, .gameshow-thumb, .netent-game,
.png-game, .evo-game {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
}

/* ============================================================
   PROMOTIONS PAGE
   ============================================================ */
.promotions-section { padding: 80px 0; }
.promos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.promo-banner-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s;
}
.promo-banner-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.promo-banners { }
.promo-banner-item img { width: 100%; height: 200px; object-fit: cover; display: block; }
.promo-details { padding: 20px; }
.promo-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  color: var(--text-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.promo-details h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.promo-details p { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
.promo-amount {
  font-size: 24px;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 16px;
}
.promo-icon { font-size: 40px; margin-bottom: 16px; }
.bonus-box {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 24px;
}
.bonus-box h2 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.bonus-box p { color: var(--text-secondary); margin-bottom: 20px; }
.bonus-terms { margin-top: 24px; }
.bonus-terms h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; color: var(--text-gold); }
.terms-list { list-style: none; padding: 0; }
.terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}
.terms-list li:last-child { border-bottom: none; }
.terms-list li i { color: var(--gold-600); margin-top: 2px; flex-shrink: 0; }
.full-banner { width: 100%; border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 24px; }
.full-banner img { width: 100%; display: block; }
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-gold);
}
.stat-big { font-size: 48px; font-weight: 900; }
.stat-value { font-size: 14px; color: var(--text-secondary); }

/* ============================================================
   LIVE CASINO PAGE
   ============================================================ */
.live-casino-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.live-casino-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,7,0.95) 40%, rgba(5,5,7,0.5) 70%, transparent 100%);
  z-index: 1;
}
.live-casino-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('../images/live-casino-hero.jpg');
}
.live-casino-hero .container { position: relative; z-index: 2; }
.live-casino-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.live-casino-hero p { font-size: 17px; color: var(--text-secondary); max-width: 550px; margin-bottom: 28px; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: #f87171;
  margin-bottom: 16px;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.live-badge-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  color: #f87171;
  margin-bottom: 20px;
}
.live-games-section { padding: 80px 0; }
.live-games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.live-game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s;
}
.live-game-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.live-game-thumb {
  position: relative;
  height: 180px;
  background: var(--bg-elevated);
  overflow: hidden;
}
.live-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.live-game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.live-game-info { padding: 16px; }
.live-game-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.live-game-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); }
.live { color: #4ade80; font-weight: 700; }
.live-advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.live-adv {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}
.live-adv:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.live-adv i { font-size: 36px; color: var(--gold-600); margin-bottom: 16px; display: block; }
.live-adv h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.live-adv p { font-size: 13px; color: var(--text-secondary); }
.why-live { padding: 80px 0; background: var(--bg-surface); }
.why-item { }

/* ============================================================
   SPORTS BETTING PAGE
   ============================================================ */
.sports-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.sports-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,7,0.95) 40%, rgba(5,5,7,0.5) 70%, transparent 100%);
  z-index: 1;
}
.sports-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('../images/sports-betting-hero.jpg');
}
.sports-hero .container { position: relative; z-index: 2; }
.sports-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sports-hero p { font-size: 17px; color: var(--text-secondary); max-width: 550px; margin-bottom: 28px; }
.sports-categories { padding: 60px 0; }
.sports-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.sport-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.sport-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.sport-icon { font-size: 40px; margin-bottom: 14px; display: block; }
.sport-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.sport-card p { font-size: 13px; color: var(--text-secondary); }
.sports-advantages { padding: 80px 0; background: var(--bg-surface); }
.popular-leagues { padding: 60px 0; }
.leagues-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.league-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.25s;
}
.league-item:hover { border-color: var(--border-gold); transform: translateX(4px); }
.league-flag { font-size: 28px; }
.league-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.league-item p { font-size: 12px; color: var(--text-muted); }
.leagues-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.league-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: all 0.25s;
}
.league-detail-card:hover { border-color: var(--border-gold); }
.league-detail-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.league-detail-card p { font-size: 14px; color: var(--text-secondary); }
.live-betting-section { padding: 80px 0; }
.live-betting-intro { margin-bottom: 40px; }
.live-sport {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: #f87171;
}
.bet-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.bet-type {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: all 0.25s;
}
.bet-type:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.bet-type i { font-size: 32px; color: var(--gold-600); margin-bottom: 14px; display: block; }
.bet-type h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.bet-type p { font-size: 13px; color: var(--text-secondary); }
.football-section { padding: 80px 0; }
.esports-section { padding: 80px 0; }
.esports-games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.esport-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}
.esport-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.esport-icon { font-size: 40px; margin-bottom: 12px; display: block; }
.esport-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.esport-card p { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { padding: 80px 0; }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.about-intro-text h2 { font-size: 32px; font-weight: 900; margin-bottom: 16px; }
.about-intro-text p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-gold);
  margin-bottom: 20px;
}
.about-intro-image { position: relative; }
.about-logo-big {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}
.about-founded-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--grad-gold);
  color: #000;
  padding: 16px 24px;
  border-radius: var(--radius-xl);
  text-align: center;
  font-weight: 900;
}
.founded-year { font-size: 36px; font-weight: 900; display: block; }
.about-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 80px; }
.about-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}
.about-stat:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.about-stat .stat-number { font-size: 36px; font-weight: 900; background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.about-stat .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.history-section { padding: 60px 0; background: var(--bg-surface); }
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 14px; top: 0; bottom: 0; width: 2px; background: var(--border-gold); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-year {
  position: absolute;
  left: -40px;
  width: 28px;
  height: 28px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: #000;
  top: 4px;
}
.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.timeline-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text-gold); }
.timeline-content p { font-size: 14px; color: var(--text-secondary); }
.mission-vision { padding: 80px 0; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all 0.3s;
}
.mv-card:hover { border-color: var(--border-gold); }
.mv-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.mv-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.mv-card p { color: var(--text-secondary); line-height: 1.8; }
.license-section { padding: 60px 0; background: var(--bg-surface); }
.license-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.license-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}
.license-item:hover { border-color: var(--border-gold); }
.license-item i { font-size: 36px; color: var(--gold-600); margin-bottom: 14px; display: block; }
.license-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.license-item p { font-size: 13px; color: var(--text-secondary); }
.about-cta { padding: 80px 0; }

/* ============================================================
   PROVIDERS PAGE
   ============================================================ */
.providers-section { padding: 80px 0; }
.providers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.provider-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.provider-icon {
  width: 72px;
  height: 72px;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
}
.provider-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.provider-card p { font-size: 13px; color: var(--text-secondary); }
.provider-page { padding: 80px 0; }
.provider-logo-big {
  width: 120px;
  height: 120px;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin-bottom: 24px;
}
.provider-icon-big { font-size: 64px; }
.provider-about { margin-bottom: 40px; }
.provider-about h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.provider-about p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.provider-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 32px; }
.provider-info { }
.providers-list { padding: 60px 0; background: var(--bg-surface); }
.provider-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  transition: all 0.25s;
}
.provider-item:hover { border-color: var(--border-gold); transform: translateX(4px); }
.provider-logo { font-size: 24px; }
.provider-item h4 { font-size: 15px; font-weight: 700; flex: 1; }
.provider-item p { font-size: 13px; color: var(--text-muted); }
.featured-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.featured {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 0.3s;
}
.featured:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

/* ============================================================
   PAYMENT METHODS PAGE
   ============================================================ */
.payment-section { padding: 80px 0; }
.payment-methods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.payment-method-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: all 0.3s;
}
.payment-method-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.pm-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.pm-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 10px;
}
.pm-details { margin-top: 12px; }
.pm-speed { font-size: 12px; color: var(--text-muted); }
.pm-details h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.pm-details p { font-size: 13px; color: var(--text-secondary); }
.payment-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 24px; }
.payment-table th { background: rgba(201,162,39,0.1); color: var(--text-gold); padding: 14px 20px; text-align: left; font-weight: 700; border-bottom: 1px solid var(--border-gold); }
.payment-table td { padding: 14px 20px; border-bottom: 1px solid var(--border-subtle); color: var(--text-secondary); }
.payment-table tr:hover td { background: rgba(255,255,255,0.02); }
.instant {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(34,197,94,0.1);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
}
.withdrawal-table-wrapper { overflow-x: auto; }
.payment-advantages { padding: 60px 0; background: var(--bg-surface); }
.pay-adv {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}
.pay-adv:hover { border-color: var(--border-gold); }
.pay-adv i { font-size: 32px; color: var(--gold-600); margin-bottom: 14px; display: block; }
.pay-adv h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.pay-adv p { font-size: 13px; color: var(--text-secondary); }
.security-info {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.security-icon { font-size: 48px; flex-shrink: 0; }
.security-text h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.security-text p { color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   LEGAL PAGES (Privacy, Terms, etc.)
   ============================================================ */
.legal-section { padding: 80px 0; }
.legal-content { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.legal-toc {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.legal-toc h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--text-gold); text-transform: uppercase; letter-spacing: 0.05em; }
.legal-toc ul { list-style: none; padding: 0; }
.legal-toc ul li { margin-bottom: 8px; }
.legal-toc ul li a { font-size: 13px; color: var(--text-secondary); transition: color 0.2s; }
.legal-toc ul li a:hover { color: var(--text-gold); }
.legal-intro { margin-bottom: 40px; }
.legal-intro p { color: var(--text-secondary); font-size: 15px; line-height: 1.8; }
.legal-body h2 { font-size: 22px; font-weight: 800; margin: 40px 0 16px; color: var(--text-primary); }
.legal-body h3 { font-size: 17px; font-weight: 700; margin: 28px 0 12px; color: var(--text-gold); }
.legal-body p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; font-size: 14px; }
.legal-body ul, .legal-body ol { padding-left: 24px; color: var(--text-secondary); margin-bottom: 16px; }
.legal-body ul li, .legal-body ol li { margin-bottom: 8px; font-size: 14px; line-height: 1.7; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 20px 0; }
.legal-table th { background: rgba(201,162,39,0.1); color: var(--text-gold); padding: 12px 16px; text-align: left; font-weight: 700; border-bottom: 1px solid var(--border-gold); }
.legal-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-subtle); color: var(--text-secondary); }
.info-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 20px 0; }
.info-table th { background: rgba(201,162,39,0.1); color: var(--text-gold); padding: 12px 16px; text-align: left; font-weight: 700; border-bottom: 1px solid var(--border-gold); }
.info-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-subtle); color: var(--text-secondary); }
.warning-box {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 24px 0;
}
.warning-box p { color: #f87171; font-size: 14px; margin: 0; }
.help-resources { padding: 60px 0; background: var(--bg-surface); }
.help-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.help-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.25s;
}
.help-link:hover { border-color: var(--border-gold); color: var(--text-gold); }

/* ============================================================
   RESPONSIBLE GAMING PAGE
   ============================================================ */
.responsible-section { padding: 80px 0; }
.responsible-intro { margin-bottom: 48px; }
.responsible-intro h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.responsible-intro p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.responsible-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.responsible-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 0.3s;
}
.responsible-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.responsible-card i { font-size: 36px; color: var(--gold-600); margin-bottom: 16px; display: block; }
.responsible-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.responsible-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   CAREER PAGE
   ============================================================ */
.career-intro { padding: 80px 0; }
.career-intro-content { max-width: 700px; }
.career-intro-content h2 { font-size: 32px; font-weight: 900; margin-bottom: 16px; }
.career-intro-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.career-benefits { padding: 60px 0; background: var(--bg-surface); }
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.advantage-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 0.3s;
}
.advantage-item:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.advantage-item i { font-size: 36px; color: var(--gold-600); margin-bottom: 16px; display: block; }
.advantage-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.advantage-item p { font-size: 13px; color: var(--text-secondary); }
.job-listings { padding: 80px 0; }
.jobs-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.25s;
}
.job-card:hover { border-color: var(--border-gold); transform: translateX(4px); }
.job-header { flex: 1; }
.job-header h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.job-details { display: flex; gap: 16px; font-size: 13px; color: var(--text-muted); }
.job-badge {
  padding: 4px 12px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-gold);
  white-space: nowrap;
}
.career-spontaneous { padding: 60px 0; }
.cta-box {
  background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, rgba(201,162,39,0.03) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}
.cta-box h2 { font-size: 28px; font-weight: 900; margin-bottom: 12px; }
.cta-box p { color: var(--text-secondary); margin-bottom: 28px; font-size: 16px; }

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-section { padding: 80px 0; }
.sitemap-col { }
.sitemap-col h3 { font-size: 16px; font-weight: 700; color: var(--text-gold); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border-gold); }
.sitemap-col ul { list-style: none; padding: 0; }
.sitemap-col ul li { margin-bottom: 8px; }
.sitemap-col ul li a { font-size: 14px; color: var(--text-secondary); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.sitemap-col ul li a:hover { color: var(--text-gold); }
.sitemap-col ul li a::before { content: '›'; color: var(--text-muted); }

/* ============================================================
   404 ERROR PAGE
   ============================================================ */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 80px 0; }
.error-content { text-align: center; }
.error-number {
  font-size: 120px;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.error-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.error-content p { color: var(--text-secondary); margin-bottom: 32px; }
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CATEGORY BANNER
   ============================================================ */
.category-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.category-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,7,0.9) 40%, rgba(5,5,7,0.4) 80%, transparent 100%);
  z-index: 1;
}
.category-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.category-banner .container { position: relative; z-index: 2; }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav-item {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.2s;
}
.mobile-nav-item:hover { color: var(--text-gold); background: rgba(201,162,39,0.05); }
.mobile-nav-item.active { color: var(--text-gold); }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }

/* ============================================================
   RESPONSIVE — PAGES
   ============================================================ */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .affiliate-layout { grid-template-columns: 1fr; }
  .game-detail-grid { grid-template-columns: 1fr; }
  .game-detail-sidebar { position: static; }
  .legal-content { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .about-intro { grid-template-columns: 1fr; }
  .casino-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .live-games-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .promos-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .license-grid { grid-template-columns: repeat(2, 1fr); }
  .responsible-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .leagues-grid { grid-template-columns: repeat(2, 1fr); }
  .bet-types-grid { grid-template-columns: repeat(2, 1fr); }
  .esports-games-grid { grid-template-columns: repeat(2, 1fr); }
  .game-variants-grid { grid-template-columns: repeat(2, 1fr); }
  .live-advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-padding { padding: 50px 0; }
  .contact-form-box { padding: 24px; }
  .affiliate-form-wrapper { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .casino-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .live-games-grid { grid-template-columns: 1fr 1fr; }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .promos-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-methods-grid { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .responsible-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .leagues-grid { grid-template-columns: 1fr; }
  .bet-types-grid { grid-template-columns: 1fr; }
  .esports-games-grid { grid-template-columns: repeat(2, 1fr); }
  .job-card { flex-direction: column; align-items: flex-start; }
  .affiliate-stats-row { gap: 24px; }
  .commission-structure { overflow-x: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .live-advantages-grid { grid-template-columns: 1fr; }
  .error-number { font-size: 80px; }
  .cta-box { padding: 32px 24px; }
  .security-info { flex-direction: column; }
  .game-variants-grid { grid-template-columns: 1fr; }
  .leagues-detail-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GAME DETAIL PAGE - LAYOUT FIX
   ============================================================ */
.game-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.game-detail-main { }
.game-detail-header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.game-detail-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.game-detail-thumb img { width: 100%; display: block; }
.game-detail-info h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.game-detail-info .game-provider {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-gold);
  margin-bottom: 16px;
}
.game-detail-info .game-provider a { color: var(--text-gold); }
.game-detail-stats {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 20px;
}
.game-detail-stats .detail-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
}
.game-detail-stats .detail-stat:last-child { border-bottom: none; }
.game-detail-stats .stat-label { color: var(--text-muted); }
.game-detail-stats .stat-value { font-weight: 700; color: var(--text-primary); }
.game-detail-stats .stat-value.gold { color: var(--text-gold); }
.game-cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
.feature-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: border-color 0.2s;
}
.feature-item:hover { border-color: var(--border-gold); }
.feature-item i { font-size: 24px; color: var(--gold-600); margin-bottom: 10px; display: block; }
.feature-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.feature-item p { font-size: 12px; color: var(--text-secondary); }

/* Sidebar */
.game-detail-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 16px;
}
.sidebar-box h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sidebar-box ul { list-style: none; padding: 0; }
.sidebar-box ul li { margin-bottom: 10px; }
.sidebar-box ul li a {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.sidebar-box ul li a:hover { color: var(--text-gold); }
.sidebar-box ul li a i { font-size: 14px; color: var(--gold-600); }

/* Promo card in sidebar */
.promo-card {
  background: linear-gradient(135deg, rgba(201,162,39,0.1) 0%, rgba(201,162,39,0.03) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
}
.promo-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.promo-card p { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }

/* RTP Analysis */
.rtp-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.rtp-card p { font-size: 13px; color: var(--text-secondary); margin-bottom: 4px; }
.rtp-percentage {
  font-size: 36px;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Strategy section */
.strategy-section { margin-bottom: 32px; }
.strategy-section h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }

/* Bonus features table */
.bonus-features { margin-bottom: 32px; }
.bonus-features h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }

@media (max-width: 1024px) {
  .game-detail-grid { grid-template-columns: 1fr; }
  .game-detail-sidebar { position: static; }
  .game-detail-header { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .game-cta-buttons { flex-direction: column; }
}
