/* ==========================================================================
   JLJL6 CASINO DESIGN SYSTEM & STYLESHEET
   Brand Colors: Gold/Amber (#FCAA09, #FBF151) & Pink/Violet (#FDB1FF, #FED7FF)
   Dark Luxury Theme: Obsidian Purple & Midnight Noir
   ========================================================================== */

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

:root {
  /* Brand Primitive Tokens */
  --gold-50: #fffbeb;
  --gold-100: #fef3c7;
  --gold-300: #FBF151;
  --gold-400: #fbbf24;
  --gold-500: #FCAA09;
  --gold-600: #d97706;
  
  --violet-100: #FED7FF;
  --violet-300: #FDB1FF;
  --violet-500: #d946ef;
  --violet-700: #a21caf;

  /* Surfaces & Backgrounds */
  --bg-deep: #08030d;
  --bg-surface-1: #10061b;
  --bg-surface-2: #190a2c;
  --bg-surface-3: #240e3f;
  --bg-glass: rgba(25, 10, 44, 0.7);
  --bg-glass-card: rgba(36, 14, 63, 0.55);
  
  /* Text Tokens */
  --text-pure: #ffffff;
  --text-bright: #f8fafc;
  --text-muted: #cbd5e1;
  --text-faint: #94a3b8;
  --text-gold: #FBF151;
  --text-violet: #FED7FF;

  /* Borders & Accents */
  --border-subtle: rgba(253, 177, 255, 0.12);
  --border-glow: rgba(252, 170, 9, 0.4);
  --border-bright: rgba(253, 177, 255, 0.35);

  /* Shadows & Glows */
  --glow-gold: 0 0 25px rgba(252, 170, 9, 0.35);
  --glow-pink: 0 0 25px rgba(253, 177, 255, 0.35);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.55);
  --shadow-card-hover: 0 20px 40px -10px rgba(252, 170, 9, 0.25);

  /* Layout Standards */
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-muted);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
  background: 
    radial-gradient(circle at 15% 10%, rgba(217, 70, 239, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(252, 170, 9, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(162, 28, 175, 0.08) 0%, transparent 50%),
    var(--bg-deep);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-pure);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Gradient Text Utilities */
.text-gradient-gold {
  background: linear-gradient(135deg, #FFF677 0%, #FCAA09 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-brand {
  background: linear-gradient(135deg, var(--violet-300) 0%, var(--gold-300) 50%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 4, 18, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 0 10px rgba(252, 170, 9, 0.4));
}

.brand-logo-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-pure);
}

.brand-logo-title span {
  color: var(--gold-500);
}

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.main-nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
}

.main-nav-links a:hover,
.main-nav-links a.active {
  color: var(--gold-300);
  background: rgba(251, 241, 81, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-gold {
  background: linear-gradient(135deg, #FBF151 0%, #FCAA09 100%);
  color: #1a0800;
  box-shadow: 0 4px 15px rgba(252, 170, 9, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(252, 170, 9, 0.55);
}

.btn-outline {
  background: rgba(253, 177, 255, 0.06);
  border: 1px solid var(--border-bright);
  color: var(--text-pure);
}

.btn-outline:hover {
  background: rgba(253, 177, 255, 0.15);
  border-color: var(--gold-300);
  color: var(--gold-300);
}

/* Language Switcher Button */
.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-pure);
  background: rgba(36, 14, 63, 0.6);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.lang-toggle-btn:hover {
  background: rgba(251, 241, 81, 0.15);
  border-color: var(--gold-400);
  color: var(--gold-300);
  box-shadow: 0 0 12px rgba(252, 170, 9, 0.3);
}

/* Author Profile Components */
.author-profile-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card), var(--glow-gold);
  margin-bottom: 3rem;
}

.author-header-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.author-avatar-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--gold-400);
  background: #3b0764;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-300);
  box-shadow: 0 0 25px rgba(252, 170, 9, 0.4);
  flex-shrink: 0;
}

.author-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.author-stat-box {
  background: rgba(11, 4, 18, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}

.author-stat-box h4 {
  color: var(--gold-300);
  font-size: 1.4rem;
  font-weight: 800;
}

.author-stat-box p {
  color: var(--text-faint);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-pure);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   CASINO HERO CONTAINER (FIRST CONTAINER WITH CASINO IMAGE BACKGROUND)
   ========================================================================== */

.casino-hero-section {
  position: relative;
  min-height: 480px;
  padding: 4.5rem 0 3.5rem;
  background-image: 
    linear-gradient(180deg, rgba(8, 3, 13, 0.72) 0%, rgba(16, 6, 27, 0.88) 60%, var(--bg-deep) 100%),
    url('/assets/images/casino-hero-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.casino-hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(252, 170, 9, 0.22) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.casino-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--violet-300), var(--gold-500), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(253, 177, 255, 0.1);
  border: 1px solid rgba(253, 177, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--violet-100);
  font-weight: 600;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(217, 70, 239, 0.2);
}

.hero-badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.trust-metric-item h4 {
  font-size: 1.35rem;
  color: var(--gold-300);
  font-weight: 800;
}

.trust-metric-item p {
  font-size: 0.8rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-featured-card {
  position: relative;
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card), var(--glow-pink);
  transform: perspective(1000px) rotateY(-4deg);
  transition: all 0.4s ease;
}

.hero-featured-card:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-5px);
  box-shadow: var(--shadow-card-hover), var(--glow-gold);
}

.hero-featured-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

/* ==========================================================================
   JACKPOT TICKER COMPONENT
   ========================================================================== */

.jackpot-ticker-bar {
  background: linear-gradient(90deg, #1b0726 0%, #290f3c 50%, #1b0726 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 0;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.jackpot-ticker-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.jackpot-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--violet-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.jackpot-amount {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #FBF151;
  text-shadow: 0 0 15px rgba(251, 241, 81, 0.6);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   FLASHY CASINO CONTAINER BACKGROUNDS
   ========================================================================== */

.section-casino-flash {
  position: relative;
  padding: 4.5rem 0;
  background: 
    linear-gradient(135deg, rgba(25, 10, 44, 0.85) 0%, rgba(13, 6, 22, 0.95) 100%);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.section-casino-flash::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(253, 177, 255, 0.08) 0%, transparent 70%);
  left: -50px;
  top: 20%;
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-400);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ==========================================================================
   3x2 INTERACTIVE GAME GRID & PLACECARDS (PAGINATED)
   ========================================================================== */

.game-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-tab {
  background: rgba(36, 14, 63, 0.4);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background: linear-gradient(135deg, rgba(253, 177, 255, 0.2) 0%, rgba(252, 170, 9, 0.2) 100%);
  border-color: var(--gold-400);
  color: var(--gold-300);
  box-shadow: 0 0 15px rgba(252, 170, 9, 0.2);
}

/* Strict 3x2 Grid (3 columns, 2 rows = 6 items per page view) */
.grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.placecard-game {
  position: relative;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.placecard-game:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card-hover), var(--glow-gold);
}

.placecard-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.placecard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.placecard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 4, 18, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-300);
  border: 1px solid rgba(251, 241, 81, 0.3);
}

.placecard-rtp {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(34, 197, 94, 0.85);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.placecard-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.placecard-title {
  font-size: 1.25rem;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
}

.placecard-desc {
  font-size: 0.9rem;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  flex-grow: 1;
}

.placecard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.85rem;
}

.placecard-provider {
  font-size: 0.8rem;
  color: var(--violet-300);
  font-weight: 600;
}

/* Pagination Controls */
.pagination-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-btn:hover,
.page-btn.active {
  background: var(--gold-500);
  color: #1a0800;
  border-color: var(--gold-500);
}

/* ==========================================================================
   CARD & CONTENT BUNDLES (PROMOTIONS & CATEGORIES)
   ========================================================================== */

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.promo-bundle-card {
  position: relative;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.promo-bundle-card:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-card-hover), var(--glow-gold);
}

.promo-tag {
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(252, 170, 9, 0.15);
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.promo-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.promo-meta-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.promo-meta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.promo-meta-item span:first-child {
  color: var(--text-faint);
}

.promo-meta-item span:last-child {
  color: var(--text-pure);
  font-weight: 600;
}

/* ==========================================================================
   E-E-A-T AUTHOR & VERIFICATION BAR
   ========================================================================== */

.eeat-trust-bar {
  background: rgba(27, 14, 43, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}

.eeat-author-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.eeat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold-400);
  background: #3b0764;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold-300);
}

.eeat-meta h5 {
  font-size: 0.95rem;
  color: var(--text-pure);
}

.eeat-meta p {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.eeat-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.eeat-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 600;
}

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

.faq-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.open {
  border-color: var(--border-glow);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: var(--text-pure);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-trigger:hover {
  color: var(--gold-300);
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--gold-400);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-body {
  display: block;
}

/* ==========================================================================
   FUNCTIONAL PAGE COMPONENTS (LOGIN, REGISTER, CASHIER)
   ========================================================================== */

.functional-card-container {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card), var(--glow-pink);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  height: 48px;
  background: rgba(11, 4, 18, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0 1rem;
  color: var(--text-pure);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 10px rgba(252, 170, 9, 0.3);
}

.amount-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.amount-pill-btn {
  padding: 0.75rem 0.5rem;
  background: rgba(36, 14, 63, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-pure);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.amount-pill-btn:hover,
.amount-pill-btn.active {
  background: var(--gold-500);
  color: #1a0800;
  border-color: var(--gold-500);
}

/* ==========================================================================
   FOOTER & COMPLIANCE SEALS
   ========================================================================== */

.site-footer {
  margin-top: auto;
  background: #06020a;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}

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

.footer-brand p {
  color: var(--text-faint);
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}

.footer-heading {
  font-size: 1.05rem;
  color: var(--text-pure);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--text-faint);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-links .hub-link {
  font-weight: 700;
  color: var(--text-pure);
  display: block;
}

.footer-links .hub-link:hover {
  color: var(--gold-300);
}

.footer-links .spoke-link-item {
  padding-left: 0.85rem;
  margin-bottom: 0.45rem;
}

.footer-links .spoke-link-item a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links .spoke-link-item a:hover {
  color: var(--gold-300);
}

/* Dedicated Responsible Gaming Compliance Banner */
.footer-compliance-box {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .footer-compliance-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

.compliance-badge {
  background: #ef4444;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.compliance-text {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.compliance-text strong {
  color: var(--text-pure);
}

.footer-compliance-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.compliance-badges-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.compliance-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.compliance-seal.seal-21 {
  border-color: #ef4444;
  color: #f87171;
}

.footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  color: var(--text-faint);
  font-size: 0.8rem;
}

/* In-Content Hub & Spoke Navigation Widget */
.hub-spoke-widget {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--gold-400);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.hub-spoke-info h4 {
  font-size: 1rem;
  color: var(--text-pure);
  margin-bottom: 0.25rem;
}

.hub-spoke-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Breadcrumbs Fallback & ol/li Support */
.breadcrumb-nav {
  margin-bottom: 1.5rem;
}

.breadcrumb-nav ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.breadcrumb-nav li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--border-bright);
}

.breadcrumb-nav a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb-nav a:hover {
  color: var(--gold-300);
}

.breadcrumb-nav li[aria-current="page"] {
  color: var(--gold-300);
  font-weight: 600;
}

/* ==========================================================================
   STICKY MOBILE BOTTOM NAVIGATION BAR
   ========================================================================== */

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(11, 4, 18, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  z-index: 999;
}

.mobile-bottom-nav-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 100%;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 500;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: var(--gold-300);
}

.mobile-nav-icon {
  font-size: 1.25rem;
}

/* ==========================================================================
   FLASHY CASINO CONTAINER BACKGROUNDS & AMBIENCE
   ========================================================================== */

.container-casino-dark {
  background: 
    radial-gradient(ellipse at 80% 20%, rgba(217, 70, 239, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(252, 170, 9, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #10061b 0%, #190a2c 50%, #0d0416 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
}

.container-casino-gold {
  background: 
    radial-gradient(circle at 50% 0%, rgba(252, 170, 9, 0.2) 0%, transparent 70%),
    linear-gradient(135deg, #180826 0%, #260f38 100%);
  border-top: 1px solid rgba(252, 170, 9, 0.25);
  border-bottom: 1px solid rgba(252, 170, 9, 0.25);
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
}

.container-casino-neon {
  background: 
    radial-gradient(circle at 10% 50%, rgba(253, 177, 255, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 90% 50%, rgba(217, 70, 239, 0.15) 0%, transparent 55%),
    linear-gradient(180deg, #0b0312 0%, #160824 100%);
  border-top: 1px solid rgba(253, 177, 255, 0.2);
  border-bottom: 1px solid rgba(253, 177, 255, 0.2);
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
}

.container-casino-mesh {
  background-color: #12071f;
  background-image: 
    radial-gradient(rgba(252, 170, 9, 0.12) 1px, transparent 0),
    radial-gradient(rgba(217, 70, 239, 0.09) 1px, transparent 0);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  padding: 4.5rem 0;
}

/* Subtle Shimmer & Light Streaks */
@keyframes shimmerGlow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.shimmer-bar {
  position: relative;
  overflow: hidden;
}
.shimmer-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 241, 81, 0.2), transparent);
  animation: shimmerGlow 3s infinite;
}

/* ==========================================================================
   BREADCRUMBS COMPONENT
   ========================================================================== */

.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb-wrap a {
  color: var(--text-muted);
}

.breadcrumb-wrap a:hover {
  color: var(--gold-300);
}

.breadcrumb-separator {
  color: var(--border-bright);
}

.breadcrumb-current {
  color: var(--gold-300);
  font-weight: 600;
}

/* ==========================================================================
   ARTICLE & SPOKE PAGE LAYOUTS
   ========================================================================== */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

.article-main {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   CONTENT WRAPPER & CATEGORY HUB ARTICLE LAYOUTS
   ========================================================================== */

.content-wrapper {
  padding: 3rem 0 5rem;
  background: 
    radial-gradient(ellipse at 80% 0%, rgba(217, 70, 239, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 100%, rgba(252, 170, 9, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0d0416 0%, #150724 50%, #090210 100%);
  min-height: 65vh;
}

.article-content {
  background: rgba(22, 10, 35, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .article-content {
    padding: 2rem 1.25rem;
    border-radius: var(--radius-lg);
  }
}

.article-content h2,
.article-main h2 {
  font-size: 1.85rem;
  font-weight: 800;
  margin: 2.25rem 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(253, 177, 255, 0.15);
  color: var(--text-pure);
  letter-spacing: -0.015em;
  position: relative;
}

.article-content h2:first-of-type,
.article-main h2:first-of-type {
  margin-top: 0;
}

.article-content h3,
.article-main h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
  color: var(--gold-300);
}

.article-content p,
.article-main p {
  margin-bottom: 1.25rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.article-content ul, 
.article-content ol,
.article-main ul, 
.article-main ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.article-content li,
.article-main li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ==========================================================================
   CATEGORY HUBS: RICH FEATURES GRID & CARDS
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin: 2rem 0 3.5rem;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 680px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.feature-card {
  position: relative;
  background: linear-gradient(180deg, rgba(32, 14, 48, 0.95) 0%, rgba(18, 7, 28, 0.98) 100%);
  border: 1px solid rgba(253, 177, 255, 0.18);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 36px -6px rgba(0, 0, 0, 0.55);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  padding: 2rem 1.75rem;
}

.feature-card.has-media {
  padding: 0;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0.85;
  transition: height 0.3s ease, opacity 0.3s ease;
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-400);
  box-shadow: 0 20px 48px -8px rgba(252, 170, 9, 0.28), 0 0 24px rgba(252, 170, 9, 0.12);
}

.feature-card:hover::before {
  height: 5px;
  opacity: 1;
}

.feature-card-media {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #0d0417;
}

.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.feature-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13, 5, 20, 0.88);
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 1;
}

.feature-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-icon-title-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  background: rgba(252, 170, 9, 0.12);
  border: 1px solid rgba(252, 170, 9, 0.35);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(252, 170, 9, 0.12);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(6deg);
  background: rgba(252, 170, 9, 0.22);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-pure);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.feature-card h3 a {
  color: var(--text-pure);
  transition: color 0.2s ease;
}

.feature-card h3 a:hover {
  color: var(--gold-300);
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0.5rem 0 1.5rem;
  flex-grow: 1;
}

.feature-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ==========================================================================
   FAQ & AUTHOR FALLBACKS FOR CATEGORY PAGES
   ========================================================================== */

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}

.faq-container .faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-container .faq-item:hover,
.faq-container .faq-item.open {
  border-color: var(--border-bright);
  background: rgba(255, 255, 255, 0.05);
}

.faq-container .faq-question {
  margin: 0;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-pure);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-container .faq-question::after {
  content: '▼';
  font-size: 0.75rem;
  color: var(--gold-300);
  transition: transform 0.3s ease;
}

.faq-container .faq-item.open .faq-question::after {
  transform: rotate(180deg);
}

.faq-container .faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-container .faq-answer p {
  margin: 0;
}

/* Author Box Fallback */
.author-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--gold-400);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-top: 3rem;
}

@media (max-width: 640px) {
  .author-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }
}

.author-box .author-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  color: #1a0800;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(252, 170, 9, 0.3);
}

.author-box .author-bio h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure);
  margin: 0 0 0.4rem;
}

.author-box .author-bio h4 a {
  color: var(--gold-300);
}

.author-box .author-bio p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.article-featured-image {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 1.5rem 0 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.article-contextual-image {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 1.75rem 0;
  border: 1px solid var(--border-bright);
  box-shadow: var(--glow-gold);
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.sidebar-title {
  font-size: 1.1rem;
  color: var(--gold-300);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  margin-bottom: 0.75rem;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.sidebar-links a:hover {
  color: var(--gold-300);
  transform: translateX(4px);
}

/* ==========================================================================
   CASINO DATA TABLES & SPECIFICATIONS
   ========================================================================== */

.casino-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.75rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.casino-data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
  background: var(--bg-surface-2);
}

.casino-data-table th {
  background: linear-gradient(90deg, #240e3f 0%, #190a2c 100%);
  color: var(--gold-300);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid var(--gold-500);
  white-space: nowrap;
}

.casino-data-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.casino-data-table tr:hover td {
  background: rgba(251, 241, 81, 0.04);
}

.table-badge-highlight {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(252, 170, 9, 0.15);
  color: var(--gold-300);
  border: 1px solid var(--gold-500);
}

/* ==========================================================================
   STEP-BY-STEP NUMBERED CARD BUNDLES
   ========================================================================== */

.step-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.75rem 0;
}

.step-guide-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.step-guide-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-4px);
}

.step-badge-number {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: #1a0800;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(252, 170, 9, 0.4);
}

.step-title {
  font-size: 1.15rem;
  margin: 0.75rem 0 0.5rem;
  color: var(--text-pure);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   INTERACTIVE TABS COMPONENT
   ========================================================================== */

.tab-container {
  margin: 1.5rem 0;
}

.tab-header {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
  overflow-x: auto;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-faint);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-pure);
}

.tab-btn.active {
  color: var(--gold-300);
  border-bottom-color: var(--gold-400);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* ==========================================================================
   CASHIER SIMULATOR & QR CODE PREVIEWS
   ========================================================================== */

.cashier-simulator-box {
  background: linear-gradient(135deg, #180826 0%, #260e3d 100%);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card), var(--glow-gold);
  margin: 2rem 0;
}

.qr-preview-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1a0800;
  max-width: 260px;
  margin: 1.5rem auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.qr-preview-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.qr-notice {
  font-size: 0.78rem;
  color: #475569;
  margin-top: 0.5rem;
  font-weight: 600;
}

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

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .article-sidebar {
    position: static;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .main-nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .mobile-bottom-nav {
    display: block;
  }
  body {
    padding-bottom: 64px;
  }
  .grid-3x2 {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .article-main {
    padding: 1.5rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

