/* ==========================================================================
   KRIKYA CASINO & SPORTS BETTING BANGLADESH - LUXURY DARK DESIGN SYSTEM
   Domain: https://krikyabetbd.xyz
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Color Palette */
  --bg-dark: #080c14;
  --bg-card: rgba(16, 22, 36, 0.78);
  --bg-card-hover: rgba(24, 34, 56, 0.88);
  --bg-header: rgba(8, 12, 20, 0.96);
  --border-color: rgba(255, 255, 255, 0.09);
  --border-highlight: rgba(251, 191, 36, 0.35);
  
  /* Accent Colors */
  --primary-gold: #fbbf24;
  --primary-gold-hover: #f59e0b;
  --gold-glow: rgba(251, 191, 36, 0.35);
  
  --emerald-green: #10b981;
  --emerald-hover: #059669;
  --emerald-glow: rgba(16, 185, 129, 0.3);
  
  --neon-orange: #ff5722;
  --neon-orange-hover: #f4511e;
  --orange-glow: rgba(255, 87, 34, 0.35);
  
  --cyber-blue: #06b6d4;
  --live-red: #ef4444;
  
  /* Text Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-gold: #fde047;

  /* Typography & Geometry */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-main: 0 12px 32px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px -5px var(--gold-glow);
  
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 12% 10%, rgba(16, 185, 129, 0.09) 0%, transparent 42%),
    radial-gradient(circle at 88% 50%, rgba(251, 191, 36, 0.07) 0%, transparent 48%),
    radial-gradient(circle at 50% 90%, rgba(255, 87, 34, 0.06) 0%, transparent 55%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--text-gold);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-main);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   HEADER & NAVIGATION - ULTRA-RESPONSIVE FOR ALL SCREEN SIZES
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
  transition: var(--transition-fast);
  width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

.brand-badge {
  background: linear-gradient(135deg, var(--neon-orange), var(--primary-gold));
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Desktop Main Nav - Adaptive Center Fit */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.nav-link {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: var(--primary-gold);
  border-bottom: 2px solid var(--primary-gold);
}

.nav-badge-hot {
  background: var(--neon-orange);
  color: #fff;
  font-size: 0.58rem;
  padding: 1px 5px;
  border-radius: var(--radius-full);
  font-weight: 700;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Common Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0b0f19 !important;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fde047 0%, #d97706 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.btn-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 15px var(--emerald-glow);
}

.btn-emerald:hover {
  background: linear-gradient(135deg, #34d399 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-highlight);
  color: var(--primary-gold) !important;
}

.btn-outline:hover {
  background: rgba(251, 191, 36, 0.12);
  color: #fff !important;
  border-color: var(--primary-gold);
}

.btn-sm {
  padding: 6px 13px;
  font-size: 0.82rem;
}

.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #090d16;
  border-left: 1px solid var(--border-highlight);
  z-index: 1999;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

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

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}

.drawer-close-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-link {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.drawer-link:hover, .drawer-link.active {
  color: var(--primary-gold);
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.2);
}

.drawer-footer-ctas {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding: 32px 0 24px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.hero-badge-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.rating-stars {
  color: var(--primary-gold);
  display: flex;
  gap: 2px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 30%, #fbbf24 80%, #ff5722 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 22px;
  line-height: 1.6;
}

.hero-description strong {
  color: var(--emerald-green);
}

.bonus-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(251, 191, 36, 0.1) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 18px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.bonus-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bonus-tag {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.promocode-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.45);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--primary-gold);
}

.promo-code-val {
  font-family: monospace;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--emerald-green);
  letter-spacing: 1.5px;
}

.copy-btn {
  background: var(--primary-gold);
  color: #000;
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.copy-btn:hover {
  background: #fff;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-card-preview {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-highlight);
  background: #121829;
}

.hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-card-preview:hover .hero-img {
  transform: scale(1.03);
}

.hero-visual-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(9, 13, 22, 0.88);
  backdrop-filter: blur(12px);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visual-badge-text h4 {
  color: var(--primary-gold);
  font-size: 1rem;
}

.visual-badge-text p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ==========================================================================
   PROGRAMMATIC SEO DYNAMIC BANNER (BELOW HERO)
   ========================================================================== */

.programmatic-seo-banner {
  margin: 10px auto 40px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(18, 26, 44, 0.95) 0%, rgba(10, 16, 28, 0.95) 100%);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.programmatic-seo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-gold), var(--emerald-green));
}

.seo-breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.seo-breadcrumb-trail a {
  color: var(--primary-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.seo-breadcrumb-trail span.current-crumb {
  color: #fff;
  font-weight: 600;
}

.seo-banner-heading {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.seo-banner-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================================================
   MATCH CENTER & LIVE ODDS
   ========================================================================== */

.match-center-section {
  margin-bottom: 50px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.title-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(251, 191, 36, 0.15);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
}

.filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 25, 41, 0.8);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  overflow-x: auto;
}

.filter-pill {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.filter-pill:hover, .filter-pill.active {
  color: #000;
  background: var(--primary-gold);
}

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

.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.match-card:hover {
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.match-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.live-badge {
  background: var(--live-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

.match-league {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.match-teams {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-score {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-gold);
}

.odds-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.odd-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.odd-btn:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--emerald-green);
}

.odd-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.odd-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--emerald-green);
}

/* ==========================================================================
   CALCULATOR WIDGET
   ========================================================================== */

.calculator-section {
  margin-bottom: 60px;
}

.calc-card {
  background: linear-gradient(135deg, rgba(18, 25, 41, 0.95) 0%, rgba(9, 13, 22, 0.95) 100%);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: flex-end;
}

.calc-field label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.calc-input-wrap {
  position: relative;
}

.calc-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.calc-input:focus {
  border-color: var(--primary-gold);
  outline: none;
}

.calc-currency {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.calc-result-box {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--emerald-green);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: right;
}

.calc-result-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--emerald-green);
}

/* ==========================================================================
   GAME CATEGORIES & CARDS
   ========================================================================== */

.games-grid-section {
  margin-bottom: 60px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.game-card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.game-card:hover .game-card-img {
  transform: scale(1.08);
}

.game-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(9, 13, 22, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.game-card-badge {
  background: var(--primary-gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.game-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.game-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

/* ==========================================================================
   RICH SEO GAME CONTENT & GUIDE BLOCKS
   ========================================================================== */

.seo-rich-content-section {
  margin-bottom: 60px;
}

.seo-article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 30px;
}

.seo-article-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.seo-article-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 18px 0 8px;
}

.seo-article-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.seo-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.seo-feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.seo-feature-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--emerald-green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.seo-feature-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.seo-tag-pill {
  display: inline-block;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: var(--primary-gold);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ==========================================================================
   BONUSES SECTION
   ========================================================================== */

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(26, 36, 59, 0.7) 0%, rgba(18, 25, 41, 0.8) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-fast);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-gold), var(--neon-orange));
}

.bonus-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.bonus-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 12px;
}

.bonus-card-conditions {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.bonus-card-conditions strong {
  color: var(--emerald-green);
}

/* ==========================================================================
   TABLE DESIGN (SPECIFICATIONS / ABOUT)
   ========================================================================== */

.table-section {
  margin-bottom: 60px;
}

.table-glass-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.custom-table th, .custom-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-table th {
  background: rgba(251, 191, 36, 0.08);
  font-family: var(--font-heading);
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.custom-table td {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.custom-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
}

.custom-table tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   REGISTRATION STEPPER
   ========================================================================== */

.stepper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--neon-orange), var(--primary-gold));
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-section {
  margin-bottom: 60px;
}

.faq-search-wrap {
  margin-bottom: 24px;
  position: relative;
}

.faq-search-input {
  width: 100%;
  background: rgba(18, 25, 41, 0.8);
  border: 1px solid var(--border-color);
  padding: 14px 20px 14px 46px;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 1rem;
}

.faq-search-input:focus {
  border-color: var(--primary-gold);
  outline: none;
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.accordion-item.active {
  border-color: var(--border-highlight);
}

.accordion-header {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.accordion-header:hover {
  color: var(--primary-gold);
}

.accordion-icon {
  transition: var(--transition-fast);
  color: var(--primary-gold);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  display: none;
}

.accordion-item.active .accordion-body {
  display: block;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--emerald-green), #047857);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.active {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #05080f;
  border-top: 1px solid var(--border-color);
  padding: 50px 0 30px;
  margin-top: 60px;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 14px;
  margin-bottom: 20px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 4px;
}

.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* Mobile Quick Bar */
.mobile-quick-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-color);
  padding: 8px 12px;
  z-index: 1500;
  justify-content: space-around;
}

.quick-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.quick-bar-item i {
  font-size: 1.2rem;
}

.quick-bar-item.active {
  color: var(--primary-gold);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Large Screens, Laptops, Tablets, Mobile)
   ========================================================================== */

/* Very Large Screens (1440px+) */
@media (min-width: 1440px) {
  .nav-link {
    font-size: 0.92rem;
    padding: 7px 12px;
  }
}

/* Desktop & Laptop (1180px - 1440px) */
@media (max-width: 1440px) and (min-width: 1181px) {
  .nav-link {
    font-size: 0.82rem;
    padding: 6px 7px;
    gap: 3px;
  }
  .brand-logo-img {
    height: 34px;
  }
  .btn-sm {
    padding: 6px 10px;
    font-size: 0.78rem;
  }
}

/* Tablets, Small Laptops & Foldables (< 1180px) */
@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Devices (< 640px) */
@media (max-width: 640px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .seo-banner-heading {
    font-size: 1.45rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mobile-quick-bar {
    display: flex;
  }
  body {
    padding-bottom: 65px;
  }
  .header-ctas .btn-emerald {
    display: none;
  }
  .bonus-box {
    padding: 14px;
  }
  .programmatic-seo-banner {
    padding: 18px 16px;
  }
  .seo-article-card {
    padding: 20px 16px;
  }
}
