/* ==========================================================================
   MASTER STYLESHEET - BETBIZI High-Fidelity Interface
   REVISED & OPTIMIZED: App-grade dark glass, edge-to-edge flush cards,
   vibrant neon accents, and zero blue link defaults.
   ========================================================================== */

/* ==========================================================================
   1. ROOT & GLOBAL DEFINITIONS
   ========================================================================== */
:root {
  /* Colour Palette */
  --canvas-pitch-black: #000000;
  --text-pure-white: #ffffff;
  --text-slate-muted: #94a3b8;
  --text-dim: #64748b;
  --accent-neon-orange: #ff5f1f;
  --accent-neon-orange-hover: #fe632a;

  /* Smoked Obsidian Glass & Surface Definitions */
  --surface-glass-primary: rgba(18, 19, 26, 0.78);
  --surface-glass-secondary: rgba(14, 15, 20, 0.85);
  --border-glass-specular: rgba(255, 255, 255, 0.09);
  --highlight-glass-edge: rgba(255, 255, 255, 0.16);

  /* Glow & Shadow Effects */
  --glow-neon-ambient: rgba(255, 95, 31, 0.28);
  --glow-neon-intense: rgba(255, 95, 31, 0.55);
  --shadow-depth-ambient: rgba(0, 0, 0, 0.8);

  /* Typography */
  --font-primary: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* Motion Physics & Transitions (Spring Kinetics) */
  --transition-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-media: 0.6s var(--transition-spring);
  --transition-transform: 0.35s var(--transition-spring);
  --transition-glow: 0.3s ease-out;

  /* Corner Radii Hierarchy */
  --radius-card-large: 20px;
  --radius-card-medium: 16px;
  --radius-tile-small: 12px;
  --radius-pill: 9999px;

  /* Layout Spacing */
  --nav-height: 76px;
}

/* ==========================================================================
   2. GLOBAL RESETS & CANVAS ARCHITECTURE
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--canvas-pitch-black);
}

body {
  background-color: var(--canvas-pitch-black) !important;
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: var(--nav-height);
}

/* Eliminate all default blue and underlined text globally */
a {
  color: var(--accent-neon-orange);
  text-decoration: none !important;
  transition: color 0.25s ease, transform 0.25s ease;
}

a:hover {
  color: var(--accent-neon-orange-hover);
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   3. MODERN STICKY GLASS HEADER
   ========================================================================== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass-specular);
}

.nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--text-pure-white) !important;
  text-decoration: none;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.nav-logo a:hover {
  color: var(--accent-neon-orange) !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.nav-link {
  color: var(--text-pure-white) !important;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-neon-orange) !important;
}

.hamburger { display: none; }

/* ==========================================================================
   4. TYPOGRAPHY SYSTEM
   ========================================================================== */
h1, h2, h3, h4 {
  color: var(--text-pure-white);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; }

.section-tag, 
.sponsored-badge, 
.card-tag, 
.card-category, 
.featured-post-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 95, 31, 0.12) !important;
  color: var(--accent-neon-orange) !important;
  border: 1px solid rgba(255, 95, 31, 0.3) !important;
  box-shadow: 0 0 12px rgba(255, 95, 31, 0.1);
  text-decoration: none !important;
}

.sponsored-badge {
  background: var(--accent-neon-orange) !important;
  color: #000000 !important;
  border: none !important;
}

/* ==========================================================================
   5. LAYOUT & SECTION STYLING
   ========================================================================== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.section-title {
  color: var(--text-pure-white);
}

.section-subtitle {
  max-width: 680px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-slate-muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero {
  padding: 4.5rem 0 3rem 0;
  text-align: center;
}

.hero p {
  max-width: 720px;
  margin: 1.25rem auto 2rem auto;
  font-size: 1.05rem;
  color: var(--text-slate-muted);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ==========================================================================
   7. TACTILE BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
  will-change: transform, box-shadow;
  transition: transform 0.25s var(--transition-spring), box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-primary {
  background: var(--accent-neon-orange) !important;
  color: var(--text-pure-white) !important;
  box-shadow: 0 0 20px var(--glow-neon-ambient), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  border-color: var(--accent-neon-orange-hover);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--accent-neon-orange-hover) !important;
  box-shadow: 0 10px 25px -5px var(--glow-neon-intense);
}

.btn-secondary {
  background: var(--surface-glass-primary) !important;
  color: var(--text-pure-white) !important;
  border-color: var(--border-glass-specular);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--accent-neon-orange);
  color: var(--accent-neon-orange) !important;
  transform: translateY(-3px) scale(1.02);
}

/* ==========================================================================
   8. CORE COMPONENT: HIGH-PERFORMANCE GLASS CARD (FLUSH IMAGES)
   ========================================================================== */
.card, 
.sponsored-card, 
#homepage-blog-grid .card, 
#answers-container .card {
  background: var(--surface-glass-secondary) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular) !important;
  border-radius: var(--radius-card-medium) !important;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important; /* CRITICAL FIX: zero padding ensures flush images */
  margin: 0 !important;
  will-change: transform, box-shadow;
  transition: transform var(--transition-transform), box-shadow var(--transition-glow), border-color 0.25s ease !important;
}

.card:hover, 
.sponsored-card:hover, 
#homepage-blog-grid .card:hover, 
#answers-container .card:hover {
  cursor: pointer;
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255, 95, 31, 0.45) !important;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge),
              0 20px 40px -10px var(--shadow-depth-ambient),
              0 0 24px var(--glow-neon-ambient) !important;
}

/* FLUSH 16:9 MEDIA CONTAINER */
.card-img-wrapper, 
.sponsored-card-image {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  aspect-ratio: 16 / 9;
  position: relative !important;
  background-color: #000000;
  border-bottom: 1px solid var(--border-glass-specular);
}

.card-img-wrapper img, 
.sponsored-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;
  transition: transform var(--transition-media);
}

.card:hover .card-img-wrapper img,
.sponsored-card:hover .sponsored-card-image img {
  transform: scale(1.05);
}

/* GRADIENT SCRIM OVER IMAGE */
.card-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 15, 20, 0.85) 100%);
  pointer-events: none;
}

/* CARD CONTENT WRAPPER */
.card-body, 
.sponsored-card-content {
  padding: 1.4rem !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  background: transparent !important;
}

.card-title, 
.sponsored-title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  margin: 0.6rem 0 0.8rem 0 !important;
  color: var(--text-pure-white) !important;
}

.card-title a, 
.sponsored-title a {
  color: var(--text-pure-white) !important;
  text-decoration: none !important;
}

.card-title a:hover {
  color: var(--accent-neon-orange) !important;
}

.card-excerpt, 
.sponsored-description {
  color: var(--text-slate-muted) !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1.25rem !important;
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
}

/* VIBRANT LINK FIX */
.card-link, 
.sponsored-link {
  font-weight: 800 !important;
  font-size: 0.78rem !important;
  color: var(--accent-neon-orange) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  text-decoration: none !important;
  margin-top: auto !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease, color 0.25s ease;
}

.card-link:hover, 
.sponsored-link:hover {
  color: var(--accent-neon-orange-hover) !important;
  gap: 10px;
}

/* ==========================================================================
   9. FEATURED STORY CONTAINER (CINEMATIC FLUSH SPLIT)
   ========================================================================== */
#featured-intelligence-container {
  width: 100%;
  margin-bottom: 2.5rem;
}

#featured-intelligence-container .card,
#featured-intelligence-container .featured-post-card,
#featured-intelligence-container article,
#featured-intelligence-container > div {
  display: grid !important;
  grid-template-columns: 55fr 45fr !important;
  align-items: stretch !important;
  background: var(--surface-glass-primary) !important;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-glass-specular) !important;
  border-radius: var(--radius-card-large) !important;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 20px 45px -10px var(--shadow-depth-ambient) !important;
  overflow: hidden !important;
  padding: 0 !important; /* CRITICAL FIX: Flush image inside split */
  min-height: 380px;
  transition: transform var(--transition-transform), box-shadow var(--transition-glow), border-color 0.25s ease !important;
}

#featured-intelligence-container .card:hover,
#featured-intelligence-container .featured-post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 31, 0.45) !important;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge),
              0 28px 55px -12px rgba(0, 0, 0, 0.9),
              0 0 28px var(--glow-neon-ambient) !important;
}

#featured-intelligence-container .card-img-wrapper,
#featured-intelligence-container .featured-post-image {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  background: #000000;
  border-bottom: none !important;
  border-right: 1px solid var(--border-glass-specular);
}

#featured-intelligence-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform var(--transition-media);
}

#featured-intelligence-container:hover img {
  transform: scale(1.03);
}

#featured-intelligence-container .card-body,
#featured-intelligence-container .featured-post-content {
  padding: 2.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background: transparent !important;
}

#featured-intelligence-container .card-title,
#featured-intelligence-container .featured-post-title {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem) !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  margin: 0.75rem 0 1rem 0 !important;
  color: var(--text-pure-white) !important;
}

#featured-intelligence-container .card-title a,
#featured-intelligence-container .featured-post-title a {
  color: var(--text-pure-white) !important;
  text-decoration: none !important;
}

#featured-intelligence-container .card-title a:hover {
  color: var(--accent-neon-orange) !important;
}

#featured-intelligence-container .card-excerpt,
#featured-intelligence-container .featured-post-excerpt {
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
  color: var(--text-slate-muted) !important;
  margin-bottom: 1.5rem !important;
}

#featured-intelligence-container .card-link,
#featured-intelligence-container .featured-post-link {
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  color: var(--accent-neon-orange) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#featured-intelligence-container .card-link:hover,
#featured-intelligence-container .featured-post-link:hover {
  color: var(--accent-neon-orange-hover) !important;
  gap: 12px;
}

/* ==========================================================================
   10. OTHER COMPONENTS (SPONSORED, COURSE BANNER, QUICK TILES)
   ========================================================================== */
.sponsored-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

#answers-container .card {
  padding: 1.5rem !important;
  border-left: 3px solid var(--accent-neon-orange) !important;
}

#answers-container .card-body {
  padding: 0 !important;
}

/* COURSE BANNER TIGHT GAP & BALANCED PROPORTIONS */
.course-banner {
  display: grid;
  grid-template-columns: 42fr 58fr;
  align-items: center;
  background: var(--surface-glass-primary);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-large);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge);
  overflow: hidden;
  margin-top: -8rem !important; /* Pulls banner directly under Intelligence Hub cards */
  margin-bottom: -2rem;
}

.course-banner-image {
  height: 100%;
  min-height: 260px;
}

.course-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.course-banner-content {
  padding: 2.2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Ensures button stays aligned left without filling width */
}

.course-banner-content .card-tag,
.course-banner-content .section-tag {
  margin-bottom: 0.75rem;
}

.course-banner-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 900;
  color: var(--text-pure-white);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.course-banner-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-slate-muted);
  margin-bottom: 1.4rem; /* Adequate breathing room above the button */
  max-width: 580px;
}

/* COMPACT BUTTON - ELIMINATES TEXT OVERLAP */
.course-banner-content .btn,
.course-banner-content .btn-primary {
  padding: 0.55rem 1.4rem !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  border-radius: var(--radius-pill) !important;
  display: inline-flex !important;
  align-self: flex-start !important;
  transform: none !important; /* Prevents upward shift into text */
  box-shadow: 0 0 14px var(--glow-neon-ambient) !important;
}

.course-banner-content .btn-primary:hover {
  background: var(--accent-neon-orange-hover) !important;
  box-shadow: 0 4px 18px var(--glow-neon-intense) !important;
  transform: translateY(-1px) !important; /* Subtle tactile lift with zero upward collision */
}

/* ==========================================================================
   COURSE BANNER CONTAINER GLOW & TACTILE HOVER
   ========================================================================== */
.course-banner {
  background: var(--surface-glass-primary) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid var(--border-glass-specular) !important;
  border-radius: var(--radius-card-medium, 16px) !important;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6) !important;
  will-change: transform, box-shadow, border-color;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease !important;
}

/* Container Glow on Hover */
.course-banner:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 95, 31, 0.6) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25),
              0 20px 40px -10px rgba(0, 0, 0, 0.75),
              0 0 24px var(--glow-neon-ambient) !important;
}

/* ==========================================================================
   11. FOOTER (CENTERED BOUNDARY & BALANCED COLUMNS)
   ========================================================================== */
.main-footer {
  width: 100%;
  padding: 3.5rem 0 2rem 0 !important;
  border-top: 1px solid var(--border-glass-specular);
  margin-top: 3.5rem !important;
  background: radial-gradient(circle at top center, rgba(20, 21, 28, 0.5), transparent 75%);
}

/* Constrains and centers the content to pull the sides inward */
.footer-inner,
.main-footer .container,
.main-footer > div:first-child {
  max-width: 1180px !important;
  margin-inline: auto !important;
  padding-inline: 2rem !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.7fr 1.15fr !important;
  gap: 3.5rem !important;
  align-items: start;
  margin-bottom: 2rem !important;
}

/* Left Brand Column */
.footer-column:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent-neon-orange);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.footer-column h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-pure-white);
  margin-bottom: 0.85rem;
}

.footer-column p {
  color: var(--text-slate-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 300px;
}

/* Middle Links Grid */
.footer-column ul {
  list-style: none;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.55rem 1.5rem !important;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 0 !important;
}

.footer-column ul li a {
  color: var(--text-slate-muted) !important;
  font-size: 0.78rem !important;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--accent-neon-orange) !important;
  transform: translateX(2px);
}

/* Hide Unwanted Social Headers */
.footer-social h4,
.footer-social-title,
.main-footer > h4,
.main-footer .social-title {
  display: none !important;
}

/* Centered Social Dock */
.social-links {
  max-width: 1180px;
  margin: 1.25rem auto 1.5rem auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 1.25rem 0 !important;
  border-top: 1px solid var(--border-glass-specular);
  border-bottom: 1px solid var(--border-glass-specular);
}

/* Lock social icons strictly circular */
.social-links a {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  flex: 0 0 38px !important;
  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--surface-glass-primary) !important;
  border: 1px solid var(--border-glass-specular) !important;
  color: var(--text-pure-white) !important;
  font-size: 0.85rem;
  text-decoration: none !important;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge);
  transition: transform 0.25s var(--transition-spring), 
              background-color 0.25s ease, 
              border-color 0.25s ease, 
              color 0.25s ease, 
              box-shadow 0.25s ease;
}

.social-links a svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  flex-shrink: 0 !important;
  pointer-events: none;
}

.social-links a:hover {
  background: var(--accent-neon-orange) !important;
  border-color: var(--accent-neon-orange-hover) !important;
  color: #000000 !important;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 0 16px var(--glow-neon-ambient), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  padding-top: 0.5rem !important;
  border-top: none !important;
}

/* Mobile & Tablet Cleanup */
@media (max-width: 820px) {
  .footer-inner,
  .main-footer .container,
  .main-footer > div:first-child {
    padding-inline: 1.25rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Center the Betbizi brand title and its descriptive subtext */
  .footer-column:first-child {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-column:first-child h3 {
    text-align: center !important;
    margin-bottom: 0.5rem;
  }

  .footer-column:first-child p {
    text-align: center !important;
    max-width: 440px;
    margin: 0 auto;
  }

  /* Switch links to 2 neat balanced columns on mobile */
  .footer-column ul {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem 1rem !important;
  }

  .footer-column ul li a {
    white-space: normal;
  }

  .social-links {
    gap: 0.65rem;
    padding: 1rem 0 !important;
  }
}

@media (max-width: 480px) {
  .footer-column ul {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   12. RESPONSIVE DESIGN & ADAPTATIONS
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-3, 
  .sponsored-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #featured-intelligence-container .card,
  #featured-intelligence-container .featured-post-card,
  .course-banner {
    grid-template-columns: 1fr !important;
  }

  #featured-intelligence-container .card-img-wrapper,
  #featured-intelligence-container .featured-post-image {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-glass-specular);
  }

  .course-banner-image {
    max-height: 240px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 64px;
  }

  .main-nav {
    height: 64px;
  }

  .grid-3, 
  .sponsored-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column p {
    margin: 0 auto;
  }

  .footer-column ul {
    align-items: center;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    gap: 1.5rem;
    background: var(--canvas-pitch-black);
    transition: left 0.35s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hamburger .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-pure-white);
    transition: all 0.3s ease;
  }
}
/* ==========================================================================
   13. NEWS ROOM & ARTICLE FEED (BLOG.PHP)
   ========================================================================== */
.blog-hero {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
  position: relative;
}

.blog-hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 95, 31, 0.12);
  color: var(--accent-neon-orange);
  border: 1px solid rgba(255, 95, 31, 0.3);
  box-shadow: 0 0 12px rgba(255, 95, 31, 0.1);
  margin-bottom: 1rem;
}

.blog-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--text-pure-white);
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.blog-hero-sub {
  font-size: 0.95rem;
  color: var(--text-slate-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}

/* APP-GRADE SEARCH & FILTER DOCK */
.blog-search-wrap {
  display: flex;
  gap: 12px;
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  padding: 12px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 30px rgba(0, 0, 0, 0.6);
}

.blog-search-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-tile-small);
  padding: 14px 18px;
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-search-input:focus {
  outline: none;
  border-color: var(--accent-neon-orange);
  box-shadow: 0 0 15px var(--glow-neon-ambient);
}

.blog-search-input::placeholder {
  color: var(--text-dim);
}

.blog-search-select {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-tile-small);
  padding: 14px 18px;
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  min-width: 220px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-search-select:focus {
  outline: none;
  border-color: var(--accent-neon-orange);
  box-shadow: 0 0 15px var(--glow-neon-ambient);
}

.blog-search-select option {
  background: #0b0c11;
  color: var(--text-pure-white);
}

/* DYNAMIC FEED GRID & SCRIPT-PRODUCED CARDS */
#blog-feed-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
  gap: 1.5rem !important;
  margin-top: 2rem;
}

.blog-card {
  background: var(--surface-glass-secondary) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular) !important;
  border-radius: var(--radius-card-medium) !important;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  will-change: transform, box-shadow;
  transition: transform var(--transition-transform), box-shadow var(--transition-glow), border-color 0.25s ease !important;
}

.blog-card:hover {
  cursor: pointer;
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255, 95, 31, 0.45) !important;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge),
              0 20px 40px -10px var(--shadow-depth-ambient),
              0 0 24px var(--glow-neon-ambient) !important;
}

.blog-card-img {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  aspect-ratio: 16 / 9;
  position: relative !important;
  background-color: #000000;
  border-bottom: 1px solid var(--border-glass-specular);
}

.blog-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform var(--transition-media);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 15, 20, 0.85) 100%);
  pointer-events: none;
}

.blog-card-body {
  padding: 1.4rem !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.blog-card-category {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 95, 31, 0.12) !important;
  color: var(--accent-neon-orange) !important;
  border: 1px solid rgba(255, 95, 31, 0.3) !important;
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  margin: 0 0 0.75rem 0 !important;
  color: var(--text-pure-white) !important;
}

.blog-card-excerpt {
  color: var(--text-slate-muted) !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1.25rem !important;
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
}

.blog-card-link {
  font-weight: 800 !important;
  font-size: 0.78rem !important;
  color: var(--accent-neon-orange) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  text-decoration: none !important;
  margin-top: auto !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease, color 0.25s ease;
}

.blog-card-link:hover {
  color: var(--accent-neon-orange-hover) !important;
  gap: 10px;
}

.loading {
  grid-column: 1 / -1;
  color: var(--text-slate-muted);
  text-align: center;
  padding: 3rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .blog-hero-title { font-size: 2rem; }
  .blog-hero { padding: 3rem 1rem 1.5rem; }
  .blog-search-wrap { flex-direction: column; margin: 0 1rem; }
  .blog-search-select { min-width: 100%; }
  #blog-feed-container { grid-template-columns: 1fr !important; gap: 1.25rem !important; padding: 0 1rem; }
}
/* ==========================================================================
   14. INTELLIGENCE HUB & Q&A DIRECTORY (ANSWERS.PHP)
   ========================================================================== */
.intelligence-hero {
  padding: 4.5rem 0 2rem;
  text-align: center;
  position: relative;
}

.intelligence-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 95, 31, 0.12);
  color: var(--accent-neon-orange);
  border: 1px solid rgba(255, 95, 31, 0.3);
  box-shadow: 0 0 12px rgba(255, 95, 31, 0.1);
  margin-bottom: 1rem;
}

.intelligence-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--text-pure-white);
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.intelligence-description {
  font-size: 0.95rem;
  color: var(--text-slate-muted);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.65;
}

/* SEARCH & CATEGORY FILTER BAR */
.search-section {
  padding: 1rem 0 2rem;
}

.search-card {
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  padding: 12px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 30px rgba(0, 0, 0, 0.6);
}

.search-wrapper {
  display: flex;
  gap: 12px;
}

.search-wrapper input {
  flex: 1;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-tile-small);
  padding: 14px 18px;
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-wrapper input:focus {
  outline: none;
  border-color: var(--accent-neon-orange);
  box-shadow: 0 0 15px var(--glow-neon-ambient);
}

.search-wrapper input::placeholder {
  color: var(--text-dim);
}

.search-wrapper select {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-tile-small);
  padding: 14px 18px;
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  min-width: 220px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-wrapper select:focus {
  outline: none;
  border-color: var(--accent-neon-orange);
  box-shadow: 0 0 15px var(--glow-neon-ambient);
}

.search-wrapper select option {
  background: #0b0c11;
  color: var(--text-pure-white);
}

/* Q&A TILES GRID */
#answers-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.qa-card {
  background: var(--surface-glass-secondary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-left: 3px solid var(--accent-neon-orange) !important;
  border-radius: var(--radius-card-medium);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  will-change: transform, box-shadow;
  transition: transform var(--transition-transform), box-shadow var(--transition-glow), border-color 0.25s ease;
}

.qa-card:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(255, 95, 31, 0.45);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge),
              0 20px 40px -10px var(--shadow-depth-ambient),
              0 0 20px var(--glow-neon-ambient);
}

.qa-card-category {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 95, 31, 0.12);
  color: var(--accent-neon-orange);
  border: 1px solid rgba(255, 95, 31, 0.25);
  margin-bottom: 0.85rem;
}

.qa-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text-pure-white);
  margin: 0 0 1.25rem 0;
}

.qa-card-link {
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--accent-neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.25s ease, color 0.25s ease;
}

.qa-card-link:hover {
  color: var(--accent-neon-orange-hover);
  gap: 10px;
}

@media (max-width: 768px) {
  .intelligence-hero { padding: 3rem 1rem 1.5rem; }
  .intelligence-title { font-size: 2rem; }
  .search-wrapper { flex-direction: column; }
  .search-wrapper select { min-width: 100%; }
  #answers-container { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ==========================================================================
   15. VERIFIED SPORTS BONUSES & PARTNER BANNERS (BONUSES.PHP)
   ========================================================================== */
.bonuses-hero {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
  position: relative;
}

.bonuses-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 95, 31, 0.12);
  color: var(--accent-neon-orange);
  border: 1px solid rgba(255, 95, 31, 0.3);
  box-shadow: 0 0 12px rgba(255, 95, 31, 0.1);
  margin-bottom: 1rem;
}

.bonuses-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--text-pure-white);
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.bonuses-description {
  font-size: 0.95rem;
  color: var(--text-slate-muted);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
}

/* BANNERS GRID */
.banners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

/* PROMO BANNER OBSIDIAN GLASS CARD */
.promo-banner {
  background: var(--surface-glass-secondary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow;
  transition: transform var(--transition-transform), box-shadow var(--transition-glow), border-color 0.25s ease;
}

.promo-banner:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255, 95, 31, 0.45);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge),
              0 20px 40px -10px var(--shadow-depth-ambient),
              0 0 24px var(--glow-neon-ambient);
}

.promo-banner a {
  display: block;
}

/* FLUSH 16:9 PROMO IMAGE */
.promo-banner-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background-color: #000000;
  border-bottom: 1px solid var(--border-glass-specular);
  transition: transform var(--transition-media);
}

.promo-banner:hover .promo-banner-img {
  transform: scale(1.04);
}

/* BANNER CONTENT DOCK */
.promo-banner-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.promo-banner-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-pure-white);
  margin: 0 0 0.6rem 0;
  letter-spacing: -0.02em;
}

.promo-banner-content p {
  color: var(--text-slate-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* HIGH-TACTILITY CLAIM BUTTON */
.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--accent-neon-orange);
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: var(--radius-tile-small);
  box-shadow: 0 4px 14px rgba(255, 95, 31, 0.35);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.promo-btn:hover {
  background: var(--accent-neon-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 95, 31, 0.55);
}

.promo-btn:active {
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .bonuses-hero { padding: 3rem 1rem 1.5rem; }
  .bonuses-title { font-size: 2rem; }
  .banners-grid { grid-template-columns: 1fr; gap: 1.25rem; padding: 0 1rem; }
}

/* ==========================================================================
   16. FUN & GAMES + LUCKY NUMBERS (GAMES.PHP)
   ========================================================================== */
.lucky-numbers-card {
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 30px rgba(0, 0, 0, 0.6);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

.lucky-date-block {
  display: flex;
  flex-direction: column;
}

.lucky-date-label {
  color: var(--accent-neon-orange);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.lucky-date-value {
  color: var(--text-pure-white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.lucky-balls-container {
  display: flex;
  gap: 24px;
}

/* 3D POOL BALLS */
.lucky-ball {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6),
              inset 0 -6px 8px rgba(0, 0, 0, 0.4),
              inset 0 6px 8px rgba(255, 255, 255, 0.4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  position: relative;
  flex-shrink: 0;
}

.lucky-ball::after {
  content: '';
  position: absolute;
  top: 12%;
  left: 20%;
  width: 30%;
  height: 20%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(2px);
}

.ball-1 { background: radial-gradient(circle at 30% 30%, #ff6b6b, #ff3b30); }
.ball-2 { background: radial-gradient(circle at 30% 30%, #4da3ff, #007aff); }
.ball-3 { background: radial-gradient(circle at 30% 30%, #5cd67a, #34c759); }
.ball-4 { background: radial-gradient(circle at 30% 30%, #ffe066, #ffcc00); color: #000000; text-shadow: none; }
.ball-5 { background: radial-gradient(circle at 30% 30%, #c77dff, #af52de); }
.ball-6 { background: radial-gradient(circle at 30% 30%, #ffad33, #ff9500); }

/* GAMES FEED CONTAINER & FLUSH GLASS CARDS */
#games-feed-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.game-card {
  background: var(--surface-glass-secondary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow;
  transition: transform var(--transition-transform), box-shadow var(--transition-glow), border-color 0.25s ease;
}

.game-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255, 95, 31, 0.45);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge),
              0 20px 40px -10px var(--shadow-depth-ambient),
              0 0 24px var(--glow-neon-ambient);
}

.game-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background-color: #000000;
  border-bottom: 1px solid var(--border-glass-specular);
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-media);
}

.game-card:hover .game-card-image img {
  transform: scale(1.05);
}

.game-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card-title {
  color: var(--text-pure-white);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem 0;
}

.game-card-description {
  color: var(--text-slate-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.play-game-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--accent-neon-orange);
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: var(--radius-tile-small);
  box-shadow: 0 4px 14px rgba(255, 95, 31, 0.35);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.play-game-btn:hover {
  background: var(--accent-neon-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 95, 31, 0.55);
}

.play-game-btn:active {
  transform: translateY(1px);
}

/* ==========================================================================
   HOW IT WORKS / MISSION CARDS (GAMES.PHP PADDING & FIT FIX)
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

.card.mission-card,
.mission-card {
  background: var(--surface-glass-secondary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  padding: 2.2rem 2rem !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 180px;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6);
  will-change: transform, box-shadow;
  transition: transform var(--transition-transform), box-shadow var(--transition-glow), border-color 0.25s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 95, 31, 0.4);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge),
              0 20px 40px -10px var(--shadow-depth-ambient),
              0 0 20px var(--glow-neon-ambient);
}

.mission-card-title {
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem 0;
  line-height: 1.3;
}

.mission-card-text {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .card.mission-card,
  .mission-card {
    padding: 1.6rem 1.4rem !important;
    min-height: auto;
  }
}
/* ==========================================================================
   17. GAMEPLAY VAULT & VIDEO FEED (GAMEPLAY.PHP)
   ========================================================================== */
#gameplay-feed-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

/* CARDS GENERATED BY GAMEPLAY.JS */
.gameplay-card,
#gameplay-feed-container .video-card {
  background: var(--surface-glass-secondary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow;
  transition: transform var(--transition-transform), box-shadow var(--transition-glow), border-color 0.25s ease;
}

.gameplay-card:hover,
#gameplay-feed-container .video-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255, 95, 31, 0.45);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge),
              0 20px 40px -10px var(--shadow-depth-ambient),
              0 0 24px var(--glow-neon-ambient);
}

.gameplay-thumb-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  background-color: #000000;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass-specular);
}

.gameplay-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-media);
}

.gameplay-card:hover .gameplay-thumb-wrap img {
  transform: scale(1.05);
}

/* COURSE & ADVISORY CALLOUT DOCK */
.course-callout {
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-left: 3px solid var(--accent-neon-orange);
  padding: 1.8rem 2rem;
  border-radius: var(--radius-card-medium);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6);
  margin-top: 2rem;
}

.course-callout-title {
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.course-callout p {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  #gameplay-feed-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .course-callout {
    padding: 1.5rem 1.25rem;
  }
}

/* DISCLAIMER CALLOUT */
.disclaimer-note {
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-left: 3px solid var(--accent-neon-orange);
  padding: 1.5rem;
  border-radius: var(--radius-card-medium);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6);
  margin-top: 2rem;
}

.disclaimer-note p {
  color: var(--text-slate-muted);
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .lucky-numbers-card {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  .lucky-balls-container {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .lucky-ball {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  #games-feed-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   18. BETBIZI TRAVEL & SCROLLABLE CAROUSEL (BETBIZITRAVEL.PHP)
   ========================================================================== */
.travel-hero {
  padding: 4.5rem 0 2rem;
  text-align: center;
  position: relative;
}

.travel-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 95, 31, 0.12);
  color: var(--accent-neon-orange);
  border: 1px solid rgba(255, 95, 31, 0.3);
  box-shadow: 0 0 12px rgba(255, 95, 31, 0.1);
  margin-bottom: 1rem;
}

.travel-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--text-pure-white);
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.travel-description {
  font-size: 0.95rem;
  color: var(--text-slate-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}

/* COMING SOON BANNER */
.coming-soon-banner {
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-left: 3px solid var(--accent-neon-orange);
  border-radius: var(--radius-card-medium);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 1.5rem auto 3rem;
  max-width: 760px;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 30px rgba(0, 0, 0, 0.6);
}

.coming-soon-banner .emoji-big {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.coming-soon-banner h2 {
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.coming-soon-banner p {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* SCROLLABLE CAROUSEL SYSTEM */
.travel-cards-section {
  padding: 2rem 0 4rem;
}

.travel-cards-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 10px;
}

.travel-cards-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1.5rem 4px 2rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.travel-cards-scroll::-webkit-scrollbar {
  height: 6px;
}

.travel-cards-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-pill);
}

.travel-cards-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-neon-orange);
  border-radius: var(--radius-pill);
}

/* TRAVEL CARD FLUSH OBSIDIAN GLASS */
.travel-card {
  flex: 0 0 320px;
  background: var(--surface-glass-secondary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  overflow: hidden;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow;
  transition: transform var(--transition-transform), box-shadow var(--transition-glow), border-color 0.25s ease;
}

.travel-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255, 95, 31, 0.45);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge),
              0 20px 40px -10px var(--shadow-depth-ambient),
              0 0 24px var(--glow-neon-ambient);
}

.travel-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-glass-specular);
  position: relative;
}

.travel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-media);
}

.travel-card:hover .travel-card-img img {
  transform: scale(1.05);
}

.travel-card-img .placeholder-icon {
  font-size: 3rem;
  opacity: 0.35;
}

.travel-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.travel-card-tag {
  color: var(--accent-neon-orange);
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.travel-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.6rem 0;
  line-height: 1.35;
  color: var(--text-pure-white);
  letter-spacing: -0.02em;
}

.travel-card-excerpt {
  color: var(--text-slate-muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  flex-grow: 1;
}

.travel-card-link {
  color: var(--accent-neon-orange);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.25s ease, color 0.25s ease;
}

.travel-card-link:hover {
  color: var(--accent-neon-orange-hover);
  gap: 10px;
}

/* CAROUSEL NAVIGATION BUTTONS */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--accent-neon-orange);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--accent-neon-orange);
  font-size: 1.1rem;
  transition: all 0.25s ease;
  z-index: 10;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.scroll-btn:hover {
  background: var(--accent-neon-orange);
  color: #000000;
  box-shadow: 0 0 15px var(--glow-neon-ambient);
}

.scroll-btn-left {
  left: 0;
}

.scroll-btn-right {
  right: 0;
}

@media (max-width: 768px) {
  .travel-hero { padding: 3rem 1rem 1.5rem; }
  .travel-title { font-size: 2rem; }
  .coming-soon-banner { margin: 1rem 1rem 2rem; padding: 2rem 1.25rem; }
  .coming-soon-banner h2 { font-size: 1.5rem; }
  .travel-card { flex: 0 0 280px; }
  .scroll-btn { display: none; }
  .travel-cards-scroll { padding: 1rem 1rem 1.5rem; gap: 1rem; }
}

@media (max-width: 480px) {
  .travel-card { flex: 0 0 260px; }
  .travel-card-title { font-size: 1rem; }
  .travel-card-excerpt { font-size: 0.82rem; }
}

/* ==========================================================================
   19. BUREAU UTILITIES & USEFUL TOOLS (USEFUL-TOOLS.PHP)
   ========================================================================== */
.tool-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.tool-badge.badge-live {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.15);
}

.tool-badge.badge-upcoming {
  background: rgba(255, 95, 31, 0.12);
  color: var(--accent-neon-orange);
  border: 1px solid rgba(255, 95, 31, 0.3);
  box-shadow: 0 0 10px rgba(255, 95, 31, 0.15);
}

.tool-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  background: var(--accent-neon-orange);
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: var(--radius-tile-small);
  margin-top: auto;
  box-shadow: 0 4px 14px rgba(255, 95, 31, 0.35);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.tool-action-btn:hover {
  background: var(--accent-neon-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 95, 31, 0.55);
}

.tool-action-btn:active {
  transform: translateY(1px);
}

/* ==========================================================================
   20. ABOUT PAGE & COMPLIANCE DISCLOSURES (ABOUT.PHP)
   ========================================================================== */
.about-hero {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
  position: relative;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 95, 31, 0.12);
  color: var(--accent-neon-orange);
  border: 1px solid rgba(255, 95, 31, 0.3);
  box-shadow: 0 0 12px rgba(255, 95, 31, 0.1);
  margin-bottom: 1rem;
}

.about-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--text-pure-white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.about-description {
  font-size: 0.95rem;
  color: var(--text-slate-muted);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.75;
}

.about-description p {
  margin-bottom: 1.25rem;
}

.about-description p:last-child {
  margin-bottom: 0;
}

/* RESPONSIBLE PLAY & COMPLIANCE CARD */
.responsible-card {
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-left: 3px solid var(--accent-neon-orange);
  border-radius: var(--radius-card-medium);
  padding: 2.5rem 2rem;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 30px rgba(0, 0, 0, 0.6);
  margin: 1.5rem auto;
  max-width: 900px;
}

.responsible-title {
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.responsible-text {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--surface-glass-secondary);
  border: 1px solid var(--border-glass-specular);
  color: var(--text-pure-white);
}

/* SARGF HELP BOX */
.help-box {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-tile-small);
  padding: 1.5rem;
  text-align: center;
}

.help-label {
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.help-text {
  color: var(--text-slate-muted);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.help-number {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-neon-orange);
  text-decoration: none;
  letter-spacing: 0.05em;
  margin: 0.4rem 0 1rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.help-number:hover {
  color: var(--accent-neon-orange-hover);
  transform: scale(1.03);
}

.help-link {
  color: var(--text-pure-white);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.2s ease;
}

.help-link:hover {
  color: var(--accent-neon-orange);
}

/* TRANSPARENCY DISCLAIMER BOX */
.transparency-box {
  background: var(--surface-glass-secondary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  padding: 2.2rem 2rem;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6);
  max-width: 900px;
  margin: 0 auto;
}

.transparency-title {
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.transparency-text {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .about-hero { padding: 3rem 1rem 1.5rem; }
  .responsible-card,
  .transparency-box {
    padding: 1.6rem 1.25rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .help-number { font-size: 1.5rem; }
}

/* ==========================================================================
   21. CONTACT PAGE & WEB3FORMS TRANSMISSION (CONTACT.PHP)
   ========================================================================== */
.contact-hero {
  padding: 4.5rem 0 2rem;
  text-align: center;
  position: relative;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 95, 31, 0.12);
  color: var(--accent-neon-orange);
  border: 1px solid rgba(255, 95, 31, 0.3);
  box-shadow: 0 0 12px rgba(255, 95, 31, 0.1);
  margin-bottom: 1rem;
}

.contact-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--text-pure-white);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

/* CONTACT FORM GLASS CONTAINER */
.contact-form-wrapper {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  padding: 2.5rem;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 30px rgba(0, 0, 0, 0.6);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-tile-small);
  padding: 14px 18px;
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 500;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-neon-orange);
  box-shadow: 0 0 15px var(--glow-neon-ambient);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff5f1f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

select.form-input option {
  background: #0b0c11;
  color: var(--text-pure-white);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.submit-btn {
  width: 100%;
  padding: 0.95rem 1.5rem;
  margin-top: 0.5rem;
  background: var(--accent-neon-orange);
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: var(--radius-tile-small);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 95, 31, 0.35);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  background: var(--accent-neon-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 95, 31, 0.55);
}

.submit-btn:active {
  transform: translateY(1px);
}

.form-result {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-slate-muted);
}
/* LEGAL MODAL POPUP */
.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.legal-modal.active,
.legal-modal[aria-hidden="false"] {
  display: flex;
}

.legal-modal-content {
  background: var(--surface-glass-primary);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 20px 50px rgba(0, 0, 0, 0.8);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem 2rem;
  position: relative;
  color: var(--text-slate-muted);
}

.legal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-slate-muted);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.legal-close:hover {
  color: var(--accent-neon-orange);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .contact-hero { padding: 3rem 1rem 1.5rem; }
  .contact-form-wrapper { padding: 1.75rem 1.25rem; margin: 0 1rem 2.5rem; }
}
/* ==========================================================================
   22. ARTICLE READER & SINGLE POST (BLOG-POST.PHP)
   ========================================================================== */
.post-back-link {
  margin: 2.5rem 0 1.5rem;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.back-button:hover {
  color: var(--accent-neon-orange-hover);
  transform: translateX(-3px);
}

.post-article {
  max-width: 860px;
  margin: 0 auto 3rem;
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  padding: 3rem 2.5rem;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 30px rgba(0, 0, 0, 0.6);
}

.post-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-pure-white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-glass-specular);
}

.post-featured-image {
  margin: 1.5rem 0 2.5rem;
  text-align: center;
}

.post-featured-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-card-small);
  border: 1px solid var(--border-glass-specular);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
  display: block;
  margin: 0 auto;
}

/* ARTICLE TYPOGRAPHY & DYNAMIC CONTENT */
.post-content {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  color: var(--text-pure-white);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2rem 0 1rem;
}

.post-content h2 { font-size: 1.6rem; }
.post-content h3 { font-size: 1.35rem; }
.post-content h4 { font-size: 1.15rem; }

.post-content p {
  margin-bottom: 1.4rem;
}

.post-content ul,
.post-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.post-content li {
  margin-bottom: 0.6rem;
}

.post-content a {
  color: var(--accent-neon-orange);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.post-content a:hover {
  color: var(--accent-neon-orange-hover);
}

.post-content blockquote {
  border-left: 3px solid var(--accent-neon-orange);
  background: var(--surface-glass-secondary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-tile-small) var(--radius-tile-small) 0;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--text-pitch-black);
}

.browse-more {
  text-align: center;
  margin: 2rem 0 4rem;
}

.browse-more .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  background: var(--surface-glass-secondary);
  border: 1px solid var(--border-glass-specular);
  color: var(--text-pure-white);
  border-radius: var(--radius-tile-small);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge);
  transition: all 0.25s ease;
}

.browse-more .btn-secondary:hover {
  border-color: var(--accent-neon-orange);
  color: var(--accent-neon-orange);
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--glow-neon-ambient);
}

@media (max-width: 768px) {
  .post-article {
    padding: 1.75rem 1.25rem;
    margin-bottom: 2rem;
  }
  .post-title { font-size: 1.65rem; }
  .post-meta { gap: 0.75rem; font-size: 0.75rem; }
}

/* ZARbet Custom Green Brand Accent */
.promo-banner.zarbet-card {
  border-color: rgba(34, 197, 94, 0.25);
}

.promo-banner.zarbet-card:hover {
  border-color: rgba(74, 222, 128, 0.7) !important;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge),
              0 20px 40px -10px var(--shadow-depth-ambient),
              0 0 24px rgba(74, 222, 128, 0.35) !important;
}

.promo-banner.zarbet-card .promo-banner-content h3 {
  color: #4ade80 !important;
}

.promo-banner.zarbet-card .promo-btn {
  background: #16a34a !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4) !important;
}

.promo-banner.zarbet-card .promo-btn:hover {
  background: #22c55e !important;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6) !important;
}
/* ==========================================================================
   UNIFIED INTELLIGENCE HUB AFFILIATE CALLOUTS (ANSWER.PHP)
   ========================================================================== */

/* 1. Base Container: Sleek Obsidian Glass Box */
.post-content .cta-box,
.post-content .cta-container,
.post-content .affiliate-box,
.post-content .zarbet-box,
.post-content div[class*="cta"],
.post-content div:has(> a[href*="tictacbets"]),
.post-content div:has(> a[href*="zarpartners"]),
.post-content div:has(> a[href*="bravobet"]),
.post-content div:has(> a[href*="apexaffiliates"]),
.post-content div:has(> a[href*="firstbet"]),
.post-content div:has(> a[href*="shayabets"]),
.post-content div:has(> a[href*="goldrush"]),
.post-content div:has(> a[href*="hollywoodbets"]),
.post-content div:has(> a[href*="10bet"]),
.post-content div:has(> a[href*="betxchange"]),
.post-content div:has(> a[href*="luckyfish"]),
.post-content div:has(> a[href*="pokerbet"]),
.post-content div:has(> a[href*="betbus"]),
.post-content div:has(> a[href*="kingbets"]),
.post-content div:has(> a[href*="topbet"]),
.post-content div:has(> a[href*="betolimp"]),
.post-content div:has(> a[href*="playabets"]) {
  background: var(--surface-glass-primary, #0d0f17) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid var(--border-glass-specular, rgba(255, 255, 255, 0.12)) !important;
  border-radius: var(--radius-card-medium, 16px) !important;
  padding: 2.5rem 2rem !important;
  margin: 3rem auto 2rem auto !important;
  max-width: 620px !important;
  text-align: center !important;
  box-sizing: border-box !important;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge, rgba(255, 255, 255, 0.1)), 
              0 14px 34px rgba(0, 0, 0, 0.65) !important;
  will-change: transform, box-shadow, border-color !important;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), 
              border-color 0.3s ease, 
              box-shadow 0.3s ease !important;
}

/* 2. Container Typography */
.post-content div[class*="cta"] h3,
.post-content div:has(> a) h3 {
  color: var(--text-pure-white, #ffffff) !important;
  font-family: var(--font-primary, 'Montserrat', sans-serif) !important;
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 0.75rem 0 !important;
  text-align: center !important;
  transition: color 0.25s ease !important;
}

.post-content div[class*="cta"] p,
.post-content div:has(> a) p {
  color: var(--text-slate-muted, #94a3b8) !important;
  font-family: var(--font-primary, 'Montserrat', sans-serif) !important;
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  margin: 0 auto 1.5rem auto !important;
  max-width: 520px !important;
  text-align: center !important;
  transition: color 0.25s ease !important;
}

/* T&Cs Disclaimer Line Centered */
.post-content div[class*="cta"] p:last-child,
.post-content div:has(> a) p:last-child {
  font-size: 0.75rem !important;
  color: var(--text-dim, #64748b) !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  margin: 1.25rem auto 0 auto !important;
}

/* 3. Fluid Action Button (Default Betbizi Neon Orange) */
.post-content div[class*="cta"] a,
.post-content div:has(> a) a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--accent-neon-orange, #ff5f1f) !important;
  color: #ffffff !important;
  font-family: var(--font-primary, 'Montserrat', sans-serif) !important;
  font-size: 0.84rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  text-decoration: none !important;
  padding: 0.9rem 2.2rem !important;
  border-radius: var(--radius-pill, 9999px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 6px 18px rgba(255, 95, 31, 0.35) !important;
  will-change: transform, box-shadow !important;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), 
              background-color 0.25s ease, 
              box-shadow 0.25s ease !important;
}

.post-content div[class*="cta"] a:hover,
.post-content div:has(> a) a:hover {
  background: var(--accent-neon-orange-hover, #fe632a) !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 10px 24px rgba(255, 95, 31, 0.55), 0 0 20px rgba(255, 95, 31, 0.3) !important;
}

.post-content div[class*="cta"] a:active,
.post-content div:has(> a) a:active {
  transform: translateY(1px) scale(0.99) !important;
}

/* 4. Default Container Hover (Fluid Neon Orange Glow) */
.post-content div[class*="cta"]:hover,
.post-content div:has(> a):hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 95, 31, 0.6) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 
              0 20px 40px -10px rgba(0, 0, 0, 0.7), 
              0 0 22px rgba(255, 95, 31, 0.25) !important;
}

/* ==========================================================================
   ZARBET CUSTOM EXCEPTION (SPECIFIC BRAND GREEN OVERRIDE)
   ========================================================================== */
.post-content div:has(a[href*="zarpartners"]) {
  border-color: rgba(34, 197, 94, 0.2) !important;
}

.post-content div:has(a[href*="zarpartners"]):hover {
  border-color: #22c55e !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 
              0 20px 40px -10px rgba(0, 0, 0, 0.7), 
              0 0 24px rgba(34, 197, 94, 0.35) !important;
}

.post-content div:has(a[href*="zarpartners"]):hover h3 {
  color: #4ade80 !important;
}

.post-content div:has(a[href*="zarpartners"]) a {
  background: #16a34a !important;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.35) !important;
}

.post-content div:has(a[href*="zarpartners"]) a:hover {
  background: #22c55e !important;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.55), 0 0 20px rgba(34, 197, 94, 0.3) !important;
}

/* ==========================================================================
   23. SINGLE VIDEO POST & SIDEBAR LAYOUT (VIDEO-POST.PHP)
   ========================================================================== */
.video-page-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1380px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  gap: 2rem;
  box-sizing: border-box;
}

/* SIDEBAR COLUMNS */
.sidebar-column {
  flex: 0 0 260px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 90px;
  align-self: flex-start;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  padding-right: 4px;
}

.sidebar-column::-webkit-scrollbar {
  width: 5px;
}

.sidebar-column::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-pill);
}

.sidebar-column::-webkit-scrollbar-thumb {
  background: var(--accent-neon-orange);
  border-radius: var(--radius-pill);
}

.sidebar-column {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-neon-orange) rgba(0, 0, 0, 0.4);
}

.sidebar-header {
  background: var(--surface-glass-primary);
  border: 1px solid var(--accent-neon-orange);
  border-radius: var(--radius-tile-small);
  padding: 0.85rem 0.75rem;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(255, 95, 31, 0.15);
}

.sidebar-header h3 {
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.3;
}

/* SIDEBAR PARTNER CARDS */
.partner-card-side {
  background: var(--surface-glass-secondary);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-small);
  padding: 0.85rem;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-transform), border-color 0.25s ease, box-shadow 0.25s ease;
}

.partner-card-side:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 31, 0.5);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.7), 0 0 18px var(--glow-neon-ambient);
}

.partner-card-side img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-tile-small);
  display: block;
  margin: 0 0 0.65rem 0;
  background: #000000;
  border: 1px solid var(--border-glass-specular);
  transition: transform var(--transition-media), filter 0.3s ease;
}

.partner-card-side:hover img {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.partner-card-side .claim-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  background: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  text-decoration: none !important;
  letter-spacing: 0.06em;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-tile-small);
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 4px 12px rgba(255, 95, 31, 0.3);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card-side .claim-link:hover {
  background: var(--accent-neon-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 95, 31, 0.5);
}

/* CENTRAL VIDEO CONTENT DOCK */
.video-main-content {
  flex: 1 1 0;
  max-width: 820px;
  min-width: 0;
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  padding: 2.5rem;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 30px rgba(0, 0, 0, 0.6);
}

.video-back-link {
  margin-bottom: 1.5rem;
}

.video-back-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, color 0.2s ease;
}

.video-back-link a:hover {
  color: var(--accent-neon-orange-hover);
  transform: translateX(-3px);
}

.video-main-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--text-pure-white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.video-main-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glass-specular);
}

.video-main-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.video-main-player {
  position: relative;
  padding-top: 56.25%;
  background: #000000;
  border-radius: var(--radius-card-small);
  overflow: hidden;
  margin-bottom: 1.75rem;
  border: 1px solid var(--border-glass-specular);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.video-main-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-main-description {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  line-height: 1.75;
  font-size: 0.94rem;
}

.video-main-description p {
  margin-bottom: 1.2rem;
}

.video-main-description strong {
  color: var(--text-pure-black);
}

/* RESPONSIVE LAYOUT BREAKPOINTS */
@media (max-width: 1280px) {
  .sidebar-column {
    flex: 0 0 210px;
    max-width: 210px;
  }
}

@media (max-width: 1100px) {
  .video-page-wrapper {
    gap: 1.25rem;
    padding: 2.5rem 1rem 3rem;
  }
  .sidebar-column {
    flex: 0 0 170px;
    max-width: 170px;
  }
  .video-main-content {
    padding: 1.75rem;
  }
  .sidebar-header h3 {
    font-size: 0.62rem;
  }
}

@media (max-width: 900px) {
  .video-page-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem 3rem;
  }
  .sidebar-column {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    top: 0;
    max-height: none;
    overflow-y: visible;
    gap: 12px;
  }
  .sidebar-header {
    width: 100%;
  }
  .partner-card-side {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
  .video-main-content {
    max-width: 100%;
    width: 100%;
    padding: 1.5rem;
    order: -1;
  }
}

@media (max-width: 480px) {
  .video-page-wrapper {
    padding: 1.5rem 0.75rem 2.5rem;
  }
  .partner-card-side {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* ==========================================================================
   24. THANK YOU & MESSAGE RECEIVED CONFIRMATION (THANK-YOU.PHP)
   ========================================================================== */
.thankyou-wrapper {
  padding: 4rem 1.25rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-card {
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  padding: 3.5rem 2.5rem;
  max-width: 640px;
  width: 100%;
  text-align: center;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 16px 36px rgba(0, 0, 0, 0.7);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem auto;
  background: rgba(34, 197, 94, 0.12);
  border: 2px solid #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #4ade80;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.25);
}

.thankyou-title {
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.thankyou-text {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.thankyou-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thankyou-buttons .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  background: var(--accent-neon-orange);
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: var(--radius-tile-small);
  box-shadow: 0 4px 14px rgba(255, 95, 31, 0.35);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.thankyou-buttons .btn-primary:hover {
  background: var(--accent-neon-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 95, 31, 0.55);
}

.thankyou-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  background: var(--surface-glass-secondary);
  border: 1px solid var(--border-glass-specular);
  color: var(--text-pure-white);
  border-radius: var(--radius-tile-small);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge);
  transition: all 0.25s ease;
}

.thankyou-buttons .btn-secondary:hover {
  border-color: var(--accent-neon-orange);
  color: var(--accent-neon-orange);
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--glow-neon-ambient);
}

@media (max-width: 600px) {
  .thankyou-card {
    padding: 2.2rem 1.5rem;
  }
  .thankyou-title {
    font-size: 1.6rem;
  }
}
/* ==========================================================================
   25. NAVBAR NAVIGATION & EXACT VIEWPORT CENTERING
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(10, 12, 21, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass-specular);
}

.nav-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: grid !important;
  /* 3-Part Balanced Grid: Logo col, Centered Nav col, Right Empty col */
  grid-template-columns: auto 1fr auto !important;
  align-items: center;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.nav-logo a {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-pure-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* Perfect Optical Center for Nav Tabs */
.nav-menu {
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  justify-self: center !important;
  gap: 1.25rem;
  margin: 0 auto !important;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-slate-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-neon-orange);
  transform: translateY(-1px);
}

/* Hamburger Trigger */
.hamburger {
  display: none;
  justify-self: end;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger .bar {
  width: 24px;
  height: 2px;
  background: var(--text-pure-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Tablet & Mobile Breakpoint */
@media (max-width: 1100px) {
  .nav-container {
    display: flex !important;
    justify-content: space-between !important;
    padding: 0 1rem;
    height: 60px;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(10, 12, 21, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: center;
    padding-top: 2.5rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
    border-top: 1px solid var(--border-glass-specular);
    margin: 0 !important;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex !important;
  }
}
/* ==========================================================================
   26. MEMORY MATCH GAME (GAMES-MEMORY.PHP)
   ========================================================================== */
.game-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  box-sizing: border-box;
}

.mm-status {
  text-align: center;
  margin: 1.5rem 0;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text-pure-white);
  text-transform: uppercase;
}

.mm-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.mm-cell {
  aspect-ratio: 1 / 1;
  background: var(--surface-glass-primary);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-small, 12px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 8px 20px rgba(0, 0, 0, 0.5);
  will-change: transform, border-color, box-shadow;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), 
              border-color 0.25s ease, 
              box-shadow 0.25s ease;
}

.mm-cell:hover {
  border-color: var(--accent-neon-orange);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 16px var(--glow-neon-ambient);
}

.mm-cell-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mm-cell.flipped .mm-cell-inner {
  opacity: 1;
}

.mm-cell-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mm-cell-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-neon-orange) 0%, #b83f08 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.mm-cell.flipped .mm-cell-back {
  opacity: 0;
  pointer-events: none;
}

.mm-cell-back::before {
  content: '?';
  font-family: var(--font-primary);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #ffffff;
}

.mm-cell.done {
  border-color: #22c55e !important;
  background: rgba(34, 197, 94, 0.15) !important;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.3) !important;
  cursor: default;
  transform: none !important;
}

.mm-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 2rem;
}

.mm-controls .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: var(--accent-neon-orange);
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-tile-small, 8px);
  box-shadow: 0 4px 14px rgba(255, 95, 31, 0.35);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.mm-controls .btn-primary:hover {
  background: var(--accent-neon-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 95, 31, 0.55);
}

@media (max-width: 768px) {
  .mm-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .game-wrap {
    padding: 2rem 1rem 3rem;
  }
}
/* ==========================================================================
   27. NOUGHTS & CROSSES GAME (NOUGHTS-AND-CROSSES.PHP)
   ========================================================================== */
.ttt-game-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  text-align: center;
  box-sizing: border-box;
}

.ttt-status {
  margin: 1.5rem 0;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text-pure-white);
  text-transform: uppercase;
}

.ttt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 360px;
  margin: 0 auto;
}

.ttt-cell {
  aspect-ratio: 1 / 1;
  background: var(--surface-glass-primary);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-small, 14px);
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 8px 20px rgba(0, 0, 0, 0.5);
  will-change: transform, border-color, box-shadow;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.2s ease,
              box-shadow 0.2s ease,
              background-color 0.2s ease;
}

.ttt-cell:hover {
  border-color: var(--accent-neon-orange);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 18px var(--glow-neon-ambient);
}

.ttt-cell:active {
  transform: translateY(1px) scale(0.98);
}

.ttt-controls {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.ttt-controls .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: var(--accent-neon-orange);
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-tile-small, 8px);
  box-shadow: 0 4px 14px rgba(255, 95, 31, 0.35);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              background-color 0.2s ease,
              box-shadow 0.2s ease;
}

.ttt-controls .btn-primary:hover {
  background: var(--accent-neon-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 95, 31, 0.55);
}

@media (max-width: 480px) {
  .ttt-grid {
    max-width: 300px;
    gap: 8px;
  }
  .ttt-cell {
    font-size: 1.9rem;
  }
}
/* ==========================================================================
   28. PRIVACY POLICY & REGULATORY COMPLIANCE (PRIVACY.PHP)
   ========================================================================== */
.legal-hero {
  padding: 3rem 1.25rem 2rem;
  text-align: center;
}

.legal-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(255, 95, 31, 0.12);
  border: 1px solid var(--accent-neon-orange);
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.legal-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-pure-white);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.legal-date {
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto 3rem;
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium);
  padding: 3rem 2.5rem;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 30px rgba(0, 0, 0, 0.6);
}

.legal-summary {
  background: var(--surface-glass-secondary);
  border-left: 3px solid var(--accent-neon-orange);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-tile-small) var(--radius-tile-small) 0;
  color: var(--text-pure-white);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* COMPLIANCE CERTIFICATE CONTAINER */
.compliance-cert-section {
  background: #000000;
  border-radius: var(--radius-card-small);
  padding: 2.5rem 2rem;
  margin: 2.5rem 0;
  border: 1px solid var(--accent-neon-orange);
  box-shadow: 0 0 20px var(--glow-neon-ambient);
}

.compliance-cert-section h2 {
  color: var(--text-pure-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.01em;
}

.compliance-cert-section .subtitle {
  color: var(--accent-neon-orange);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cert-badge {
  background: var(--surface-glass-secondary);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-tile-small);
  padding: 2rem 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.cert-badge h3 {
  color: var(--text-pure-white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.cert-badge > p {
  color: var(--text-slate-muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.cert-image {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-tile-small);
  margin: 1.5rem auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  display: block;
}

.cert-details {
  background: #000000;
  border-left: 3px solid var(--accent-neon-orange);
  padding: 1.25rem;
  margin: 1.25rem 0;
  border-radius: 0 var(--radius-tile-small) var(--radius-tile-small) 0;
  text-align: left;
}

.cert-details p {
  margin: 0.5rem 0;
  color: var(--text-slate-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.cert-details strong {
  color: var(--text-pure-white);
  font-weight: 700;
}

.reg-number {
  font-family: 'Courier New', monospace;
  background: var(--accent-neon-orange);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
  display: inline-block;
  margin-left: 4px;
}

.watchdog-info {
  background: var(--surface-glass-secondary);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-tile-small);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.watchdog-info h4 {
  color: var(--text-pure-white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
}

.watchdog-info > p {
  color: var(--text-slate-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-align: center;
}

.watchdog-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.watchdog-info li {
  padding: 0.65rem 0;
  color: var(--text-slate-muted);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-glass-specular);
}

.watchdog-info li:last-child {
  border-bottom: none;
}

.watchdog-info li strong {
  color: var(--accent-neon-orange);
}

.cert-disclaimer {
  background: rgba(255, 95, 31, 0.08);
  border-left: 3px solid var(--accent-neon-orange);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  border-radius: 0 var(--radius-tile-small) var(--radius-tile-small) 0;
  font-size: 0.82rem;
  text-align: left;
}

.cert-disclaimer strong {
  color: var(--accent-neon-orange);
}

.cert-disclaimer p {
  margin: 0;
  color: var(--text-slate-muted);
  line-height: 1.6;
}

/* POLICY CONTENT TYPOGRAPHY */
.legal-heading {
  color: var(--text-pure-white);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 2rem 0 0.75rem;
}

.legal-text {
  color: var(--text-slate-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.legal-text strong {
  color: var(--text-pure-white);
}

.legal-contact-box {
  background: var(--surface-glass-secondary);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-tile-small);
  padding: 1rem 1.25rem;
  margin: 1rem 0 1.5rem;
}

.legal-contact-box p {
  margin: 0;
  color: var(--text-pure-white);
  font-size: 0.9rem;
}

.legal-list {
  margin: 0.75rem 0 1.5rem 1.5rem;
  padding: 0;
  color: var(--text-slate-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.legal-list li {
  margin-bottom: 0.5rem;
}

.legal-footer-note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass-specular);
  color: var(--text-dim);
  font-size: 0.85rem;
  text-align: center;
}

.legal-footer-note strong {
  color: var(--text-pure-white);
}

@media (max-width: 768px) {
  .legal-card {
    padding: 2rem 1.25rem;
  }
  .compliance-cert-section {
    padding: 1.5rem 1rem;
  }
}
/* ==========================================================================
   29. REFLEX WHISTLE GAME (REFLEX-WHISTLE.PHP)
   ========================================================================== */
.rw-game-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  text-align: center;
  box-sizing: border-box;
}

.rw-box {
  height: 320px;
  border-radius: var(--radius-card-medium, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: 0.04em;
  padding: 2rem;
  user-select: none;
  -webkit-user-select: none;
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 30px rgba(0, 0, 0, 0.6);
  will-change: transform, background-color, border-color, box-shadow;
  transition: background-color 0.15s ease, 
              border-color 0.2s ease, 
              box-shadow 0.2s ease, 
              transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rw-box:active {
  transform: scale(0.98);
}

/* Idle State (Waiting for user to initiate) */
.rw-idle {
  background: var(--surface-glass-primary);
  color: var(--accent-neon-orange);
  border-color: rgba(255, 95, 31, 0.4);
}

.rw-idle:hover {
  border-color: var(--accent-neon-orange);
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 20px var(--glow-neon-ambient);
}

/* Waiting State (Tension build up) */
.rw-waiting {
  background: radial-gradient(circle at center, #8a1414 0%, #4a0808 100%);
  color: #ffffff;
  border-color: #ef4444;
  box-shadow: 0 0 24px rgba(239, 68, 68, 0.35);
}

/* Go State (Instant trigger) */
.rw-go {
  background: radial-gradient(circle at center, #22c55e 0%, #15803d 100%);
  color: #ffffff;
  border-color: #4ade80;
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.55);
}

/* Offside / False Start State */
.rw-soon {
  background: radial-gradient(circle at center, #991b1b 0%, #580a0a 100%);
  color: #ffffff;
  border-color: #f87171;
  box-shadow: 0 0 24px rgba(248, 113, 113, 0.35);
}

/* Result State (Displays speed) */
.rw-result {
  background: var(--surface-glass-primary);
  color: #4ade80;
  border-color: #22c55e;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 0 24px rgba(34, 197, 94, 0.3);
}

.rw-result:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 0 28px rgba(34, 197, 94, 0.45);
}

/* Persistent Scoreboard */
.rw-best {
  margin-top: 1.5rem;
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .rw-box {
    height: 260px;
    padding: 1.25rem;
  }
}
/* ==========================================================================
   30. BETBIZI WORD SEARCH GAME (WORD-SEARCH.PHP)
   ========================================================================== */
.ws-container-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.ws-header {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
}

.ws-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--text-pure-white);
  letter-spacing: -0.02em;
}

.ws-header p {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.level-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 820px;
  margin: 0 auto;
}

.level-btn {
  background: var(--surface-glass-primary);
  border: 1px solid var(--border-glass-specular);
  color: var(--text-slate-muted);
  padding: 8px 18px;
  border-radius: var(--radius-pill, 9999px);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.75rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.level-btn:hover {
  border-color: var(--accent-neon-orange);
  color: #ffffff;
  transform: translateY(-2px);
}

.level-btn.active {
  background: var(--accent-neon-orange);
  border-color: var(--accent-neon-orange);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 95, 31, 0.4);
}

/* MAIN LAYOUT */
.ws-main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  width: fit-content;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ws-main.visible {
  opacity: 1;
  transform: translateY(0);
}

/* GRID BOX */
.ws-grid-wrapper {
  background: var(--surface-glass-primary);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium, 16px);
  padding: 16px;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 14px 34px rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-grid {
  display: grid;
  gap: 2px;
  background: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.ws-cell {
  width: 38px;
  height: 38px;
  background: #000000;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.ws-cell:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.ws-cell.selected {
  background: var(--accent-neon-orange) !important;
  color: #ffffff !important;
  transform: scale(1.08);
  box-shadow: 0 0 14px rgba(255, 95, 31, 0.5);
}

.ws-cell.found {
  background: #16a34a !important;
  color: #ffffff !important;
  cursor: default;
}

/* WORD LIST CONTAINER */
.ws-word-box {
  background: var(--surface-glass-primary);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium, 16px);
  padding: 20px;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 14px 34px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

.ws-word-box h3 {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--accent-neon-orange);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-glass-specular);
  padding-bottom: 8px;
  text-align: center;
  font-weight: 900;
}

.ws-word-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-content: start;
}

.ws-word-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  background: #000000;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--text-pure-white);
  border: 1px solid var(--border-glass-specular);
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1.25;
  word-break: break-word;
  min-height: 42px;
}

.ws-word-item.found {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  opacity: 0.85;
}

.ws-word-item.found::after {
  content: ' \2713';
  color: #22c55e;
  font-weight: 900;
  margin-left: 4px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {
  .ws-main {
    width: 100%;
  }
  .ws-grid-wrapper {
    max-width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .ws-cell {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
  }
}

@media (max-width: 500px) {
  .ws-cell {
    width: 25px;
    height: 25px;
    font-size: 0.72rem;
  }
  .ws-word-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .ws-word-item {
    font-size: 0.72rem;
    padding: 6px;
  }
}
/* ==========================================================================
   31. SOCCER BETTING COURSE OVERVIEW (COURSE-OVERVIEW.PHP)
   ========================================================================== */
.course-overview-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  box-sizing: border-box;
}

.course-overview-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.course-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(255, 95, 31, 0.12);
  border: 1px solid var(--accent-neon-orange);
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.course-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-pure-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.course-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-dim);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}

.course-featured-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 2.5rem auto;
  border-radius: var(--radius-card-medium, 16px);
  border: 1px solid var(--border-glass-specular);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.course-content-card {
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium, 16px);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 30px rgba(0, 0, 0, 0.6);
}

.course-content-card h2 {
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem 0;
  border-bottom: 1px solid var(--border-glass-specular);
  padding-bottom: 0.75rem;
}

.course-content-card h3 {
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 1.75rem 0 0.65rem 0;
}

.course-content-card p {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.course-content-card p strong {
  color: var(--text-pure-white);
}

.course-content-card ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.94rem;
  line-height: 1.75;
}

.course-content-card ol li {
  margin-bottom: 0.75rem;
}

.course-content-card ol li strong {
  color: var(--text-pure-white);
}

/* COMPLIANCE NOTIFICATION BOX */
.compliance-box {
  background: var(--surface-glass-secondary);
  border-left: 3px solid var(--accent-neon-orange);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-tile-small) var(--radius-tile-small) 0;
  margin: 1.5rem 0;
}

.compliance-box p {
  margin: 0;
  color: var(--text-slate-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.compliance-box p strong {
  color: var(--text-pure-white);
}

/* MODULE BOTTOM NAVIGATION BUTTON */
.module-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 2rem;
}

.module-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.5rem;
  background: var(--accent-neon-orange);
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  border-radius: var(--radius-pill, 9999px);
  box-shadow: 0 6px 18px rgba(255, 95, 31, 0.35);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), 
              background-color 0.25s ease, 
              box-shadow 0.25s ease;
}

.module-nav-btn:hover {
  background: var(--accent-neon-orange-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 24px rgba(255, 95, 31, 0.55), 0 0 20px rgba(255, 95, 31, 0.3);
}

.module-nav-btn:active {
  transform: translateY(1px) scale(0.99);
}

@media (max-width: 768px) {
  .course-content-card {
    padding: 1.75rem 1.25rem;
  }
}
/* ==========================================================================
   32. SPORTS BETTING COURSE HUB (SPORTS-BETTING-COURSE.PHP)
   ========================================================================== */
.course-hub-hero {
  padding: 3.5rem 1.25rem 2.5rem;
  text-align: center;
}

.course-hub-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(255, 95, 31, 0.12);
  border: 1px solid var(--accent-neon-orange);
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill, 9999px);
  margin-bottom: 1rem;
}

.course-hub-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--text-pure-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.course-hub-description {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 2rem auto;
}

.course-intro-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.course-intro-text {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 1.25rem;
}

.course-intro-text strong {
  color: var(--accent-neon-orange);
}

/* 3-COLUMN CURRICULUM GRID */
.course-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.course-card {
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium, 16px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6);
  will-change: transform, border-color, box-shadow;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), 
              border-color 0.25s ease, 
              box-shadow 0.25s ease;
}

.course-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 31, 0.5);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 16px 36px rgba(0, 0, 0, 0.75), 0 0 20px var(--glow-neon-ambient);
}

.course-card-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
  border-bottom: 1px solid var(--border-glass-specular);
}

.course-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.course-card:hover .course-card-img-wrapper img {
  transform: scale(1.04);
}

.course-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-card-tag {
  display: inline-block;
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.course-card-title {
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.course-card-excerpt {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.course-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.course-card-link:hover {
  color: var(--accent-neon-orange-hover);
  gap: 10px;
}

/* COMMUNITY CTA BLOCK */
.course-community-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1.25rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  background: var(--accent-neon-orange);
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  border-radius: var(--radius-pill, 9999px);
  box-shadow: 0 6px 18px rgba(255, 95, 31, 0.35);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), 
              background-color 0.25s ease, 
              box-shadow 0.25s ease;
}

.hero-buttons .btn-primary:hover {
  background: var(--accent-neon-orange-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 24px rgba(255, 95, 31, 0.55), 0 0 20px rgba(255, 95, 31, 0.3);
}

.hero-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  background: var(--surface-glass-secondary);
  border: 1px solid var(--border-glass-specular);
  color: var(--text-pure-white) !important;
  font-family: var(--font-primary);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  border-radius: var(--radius-pill, 9999px);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.hero-buttons .btn-secondary:hover {
  border-color: var(--accent-neon-orange);
  color: var(--accent-neon-orange) !important;
  transform: translateY(-3px);
  box-shadow: 0 0 18px var(--glow-neon-ambient);
}

@media (max-width: 1024px) {
  .course-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .course-grid-3 {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   33. ODDS VALUE AND VIG CHECKER TOOL (ODDS-VIG-CHECKER.PHP)
   ========================================================================== */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.calc-card {
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium, 16px);
  padding: 1.75rem;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

.calc-title {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-neon-orange);
  margin-bottom: 1.25rem;
}

.market-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.market-toggle button {
  flex: 1;
  background: #000000;
  border: 1px solid var(--border-glass-specular);
  color: var(--text-slate-muted);
  padding: 12px 0;
  border-radius: var(--radius-tile-small, 8px);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.market-toggle button:hover {
  border-color: rgba(255, 95, 31, 0.4);
  color: var(--text-pure-white);
}

.market-toggle button.sel {
  border-color: var(--accent-neon-orange);
  color: var(--accent-neon-orange);
  background: rgba(255, 95, 31, 0.1);
  box-shadow: 0 0 12px rgba(255, 95, 31, 0.2);
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-glass-specular);
}

.result-label {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.85rem;
}

.result-value {
  font-family: var(--font-primary);
  font-weight: 800;
  color: var(--text-pure-white);
  font-size: 0.95rem;
  white-space: nowrap;
}

.result-value.orange {
  color: var(--accent-neon-orange);
}

.breakdown-title {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin: 1.25rem 0 0.5rem 0;
}

/* VERDICT CALLOUT STATES */
.verdict {
  margin-top: 1.25rem;
  border-radius: var(--radius-card-small, 12px);
  padding: 1.25rem;
  text-align: center;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge);
}

.verdict h3 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 900;
}

.verdict p {
  font-family: var(--font-primary);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

.verdict.take {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid #22c55e;
  color: #4ade80;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.25);
}

.verdict.mid {
  background: rgba(255, 95, 31, 0.1);
  border: 1px solid var(--accent-neon-orange);
  color: var(--accent-neon-orange);
  box-shadow: 0 0 16px rgba(255, 95, 31, 0.25);
}

.verdict.trap {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid #ef4444;
  color: #f87171;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.25);
}

.verdict.wait {
  background: var(--surface-glass-secondary);
  border: 1px solid var(--border-glass-specular);
  color: var(--text-dim);
}

.calc-note {
  margin-top: 1rem;
  color: var(--text-dim);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  line-height: 1.6;
}

.help-text {
  color: var(--text-dim);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 12px;
}

.course-callout {
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-left: 3px solid var(--accent-neon-orange);
  border-radius: var(--radius-card-small, 12px);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.course-callout-title {
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.course-callout p {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   34. INDIVIDUAL COURSE MODULE LESSON (MODULE-9.PHP)
   ========================================================================== */
.module-page-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  box-sizing: border-box;
}

.module-back-link {
  margin-bottom: 1.5rem;
}

.module-back-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  transition: transform 0.2s ease, color 0.2s ease;
}

.module-back-link a:hover {
  color: var(--accent-neon-orange-hover);
  transform: translateX(-3px);
}

.module-article-header {
  margin-bottom: 2rem;
}

.module-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(255, 95, 31, 0.12);
  border: 1px solid var(--accent-neon-orange);
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill, 9999px);
  margin-bottom: 0.85rem;
}

.module-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-pure-white);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.module-meta-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.module-hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card-medium, 16px);
  border: 1px solid var(--border-glass-specular);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65);
  margin-bottom: 2.5rem;
  display: block;
}

.module-content-card {
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium, 16px);
  padding: 2.75rem 2.25rem;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 28px rgba(0, 0, 0, 0.6);
  margin-bottom: 2.5rem;
}

.module-content-card h2 {
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 2rem 0 0.85rem 0;
}

.module-content-card h2:first-of-type {
  margin-top: 0;
}

.module-content-card p {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.module-content-card p strong {
  color: var(--text-pure-white);
}

.module-content-card ol {
  margin: 1.2rem 0 1.5rem 1.5rem;
  padding: 0;
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.94rem;
  line-height: 1.75;
}

.module-content-card ol li {
  margin-bottom: 0.75rem;
}

.module-content-card ol li strong {
  color: var(--accent-neon-orange);
}

/* BANANA SKIN CALLOUT */
.banana-skin-card {
  background: rgba(255, 95, 31, 0.08);
  border: 1px solid var(--accent-neon-orange);
  border-left: 4px solid var(--accent-neon-orange);
  border-radius: var(--radius-card-small, 12px);
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 0 18px rgba(255, 95, 31, 0.2);
}

.banana-skin-title {
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

.banana-skin-card p {
  margin: 0;
  color: var(--text-slate-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* PREV / NEXT NAVIGATION SPLIT */
.module-nav-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.module-nav-split a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill, 9999px);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.module-nav-split .btn-prev {
  background: var(--surface-glass-secondary);
  border: 1px solid var(--border-glass-specular);
  color: var(--text-pure-white) !important;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge);
}

.module-nav-split .btn-prev:hover {
  border-color: var(--accent-neon-orange);
  color: var(--accent-neon-orange) !important;
  transform: translateX(-3px);
  box-shadow: 0 0 14px var(--glow-neon-ambient);
}

.module-nav-split .btn-next {
  background: var(--accent-neon-orange);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(255, 95, 31, 0.35);
}

.module-nav-split .btn-next:hover {
  background: var(--accent-neon-orange-hover);
  transform: translateX(3px);
  box-shadow: 0 6px 20px rgba(255, 95, 31, 0.55);
}

@media (max-width: 600px) {
  .module-content-card {
    padding: 1.75rem 1.25rem;
  }
  .module-nav-split {
    flex-direction: column;
    width: 100%;
  }
  .module-nav-split a {
    width: 100%;
    box-sizing: border-box;
  }
}
/* ==========================================================================
   35. FICA CO-HABITATION AFFIDAVIT GENERATOR (FICA-TOOL.PHP)
   ========================================================================== */
.fica-page-wrap {
  padding: 2.5rem 1.25rem 4rem;
  box-sizing: border-box;
}

.fica-container {
  max-width: 720px;
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  margin: 0 auto 2rem;
  padding: 2.5rem 3rem;
  border-radius: var(--radius-card-medium, 16px);
  border: 1px solid var(--border-glass-specular);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 36px rgba(0, 0, 0, 0.65);
  box-sizing: border-box;
}

.fica-container .logo-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.fica-container .logo-icon .badge {
  background: var(--accent-neon-orange);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill, 9999px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fica-container h1 {
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.fica-container .subtitle {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.fica-container label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  color: var(--text-slate-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fica-container input {
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 1.35rem;
  background-color: #000000;
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-tile-small, 8px);
  color: #ffffff;
  box-sizing: border-box;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.fica-container input:focus {
  border-color: var(--accent-neon-orange);
  outline: none;
  box-shadow: 0 0 14px var(--glow-neon-ambient);
}

.fica-container input::placeholder {
  color: var(--text-dim);
  font-weight: 400;
}

.btn-generate {
  width: 100%;
  background: var(--accent-neon-orange);
  color: #ffffff !important;
  padding: 1rem;
  border: none;
  border-radius: var(--radius-tile-small, 8px);
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease, box-shadow 0.25s ease;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  box-shadow: 0 6px 18px rgba(255, 95, 31, 0.35);
}

.btn-generate:hover {
  background: var(--accent-neon-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 95, 31, 0.55);
}

.fica-legal-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-glass-specular);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.7;
}

/* ACTION BUTTONS AFTER GENERATION */
.action-buttons {
  display: none;
  max-width: 800px;
  margin: 1.5rem auto 2rem;
  text-align: center;
  padding: 0 1.25rem;
}

.action-buttons.visible {
  display: block;
}

.action-buttons .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download, .btn-edit {
  padding: 0.95rem 2.25rem;
  border: none;
  border-radius: var(--radius-pill, 9999px);
  font-weight: 800;
  font-size: 0.84rem;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease, box-shadow 0.25s ease;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-download {
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}

.btn-download:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.5);
}

.btn-edit {
  background: var(--surface-glass-secondary);
  border: 1px solid var(--border-glass-specular);
  color: var(--text-pure-white);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge);
}

.btn-edit:hover {
  border-color: var(--accent-neon-orange);
  color: var(--accent-neon-orange);
  transform: translateY(-2px);
  box-shadow: 0 0 16px var(--glow-neon-ambient);
}

/* LOADING SPINNER */
.loading-spinner {
  display: none;
  text-align: center;
  padding: 2rem;
}

.loading-spinner.active {
  display: block;
}

.spinner {
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--accent-neon-orange);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  animation: ficaSpin 0.85s linear infinite;
  margin: 0 auto 12px;
}

@keyframes ficaSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner p {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.88rem;
}

/* PRINTABLE A4 AFFIDAVIT DOCUMENT */
#printableDocument {
  display: none;
  background: #ffffff;
  color: #111827;
  padding: 30px 40px 25px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65);
  box-sizing: border-box;
}

#printableDocument.visible {
  display: block;
}

.pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--accent-neon-orange);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.pdf-brand h2 {
  font-size: 17px;
  font-weight: 900;
  color: #0a0c15;
  letter-spacing: -0.5px;
  margin: 0;
}

.pdf-brand .tagline {
  font-size: 7.5px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

.pdf-ref {
  text-align: right;
  font-size: 9px;
  font-weight: 700;
  color: #4b5563;
  font-family: 'Courier New', monospace;
  background: #f3f4f6;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.pdf-ref span {
  color: #0a0c15;
}

.pdf-doc-title {
  text-align: center;
  margin-bottom: 14px;
}

.pdf-doc-title h1 {
  font-size: 15px;
  font-weight: 800;
  color: #0a0c15;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.pdf-doc-title p {
  font-size: 9px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 3px 0 0;
}

.pdf-body p {
  margin-bottom: 6px;
  font-size: 11.5px;
  color: #1f2937;
}

.pdf-body strong {
  color: #0a0c15;
}

.pdf-address-box {
  background: #f9fafb;
  border-left: 3px solid var(--accent-neon-orange);
  padding: 6px 14px;
  margin: 4px 0 10px 16px;
  font-style: italic;
  border-radius: 0 4px 4px 0;
  color: #1f2937;
  font-size: 11px;
}

.pdf-section-title {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: #0a0c15;
  border-bottom: 1.5px solid #e5e7eb;
  padding-bottom: 4px;
  margin-top: 14px;
  margin-bottom: 10px;
}

.pdf-sign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.pdf-sign-line {
  border-top: 1.5px solid #111827;
  padding-top: 4px;
  text-align: center;
  font-size: 8.5px;
  font-weight: 700;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pdf-stamp-box {
  border: 2px dashed #9ca3af;
  padding: 12px;
  text-align: center;
  font-size: 8.5px;
  font-weight: 800;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
}

.pdf-footer {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1.5px solid #e5e7eb;
  font-size: 8px;
  color: #9ca3af;
  text-align: center;
  line-height: 1.5;
}

.pdf-footer strong {
  color: #4b5563;
}

@media (max-width: 600px) {
  .fica-container {
    padding: 1.75rem 1.25rem;
  }
  #printableDocument {
    padding: 18px 16px 14px;
  }
  .pdf-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  .pdf-ref {
    white-space: normal;
  }
  .pdf-sign-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .action-buttons .btn-group {
    flex-direction: column;
    align-items: center;
  }
  .btn-download, .btn-edit {
    width: 100%;
    max-width: 320px;
  }
}

@media print {
  body {
    background: #ffffff !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .navbar, .footer, .footer-social, .footer-bottom,
  .action-buttons, .fica-container, .loading-spinner {
    display: none !important;
  }
  #printableDocument {
    display: block !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    box-shadow: none !important;
    max-width: 100% !important;
  }
  .pdf-stamp-box {
    border: 2px dashed #9ca3af !important;
  }
}
/* ==========================================================================
   36. COOL-OFF BREAK TIMER (COOL-OFF.PHP)
   ========================================================================== */
.cooloff-hero {
  padding: 3.5rem 1.25rem 2.5rem;
  text-align: center;
}

.cooloff-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--text-pure-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cooloff-hero p {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 1.75rem auto;
}

.cooloff-note {
  margin-top: 1rem;
  color: var(--text-dim);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
}

/* RESPONSIBLE GAMBLING EMERGENCY CARD */
.responsible-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-medium, 16px);
  padding: 2.75rem 2.25rem;
  text-align: center;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 32px rgba(0, 0, 0, 0.65);
}

.responsible-title {
  color: var(--text-pure-white);
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.responsible-text {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2rem auto;
}

.help-box {
  background: #000000;
  border: 1px solid var(--border-glass-specular);
  border-left: 4px solid var(--accent-neon-orange);
  border-radius: var(--radius-tile-small, 8px);
  padding: 1.5rem;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(255, 95, 31, 0.15);
}

.help-label {
  color: var(--text-slate-muted);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.help-number {
  display: inline-block;
  color: var(--accent-neon-orange);
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: transform 0.2s ease, color 0.2s ease;
}

.help-number:hover {
  color: var(--accent-neon-orange-hover);
  transform: scale(1.03);
}

@media (max-width: 600px) {
  .responsible-card {
    padding: 1.75rem 1.25rem;
  }
}
/* ==========================================================================
   37. BIZIBEE AI CHAT ASSISTANT (CHAT.PHP)
   ========================================================================== */
.chat-page-wrapper {
  min-height: calc(100vh - 280px);
  padding: 2.5rem 1.25rem 3rem;
  box-sizing: border-box;
}

.chat-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--surface-glass-primary);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-card-large, 24px);
  overflow: hidden;
  border: 1px solid var(--border-glass-specular);
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge), 0 12px 40px rgba(0, 0, 0, 0.65);
  min-height: 700px;
  display: flex;
  flex-direction: column;
}

.chat-header {
  padding: 1.25rem 1.75rem;
  background: var(--surface-glass-secondary);
  border-bottom: 1px solid var(--border-glass-specular);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chat-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-tile-small, 8px);
}

.chat-header-left h1 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-pure-white);
  margin: 0;
  letter-spacing: -0.01em;
}

.chat-header-left .badge {
  background: var(--accent-neon-orange);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill, 9999px);
  letter-spacing: 0.05em;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4ade80;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.chat-status .dot {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}

.chat-interface {
  flex: 1;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--surface-glass-secondary);
  border-radius: 10px;
}

.welcome-message {
  max-width: 820px;
  margin: auto;
  text-align: center;
  padding: 2rem 1.25rem;
}

.welcome-icon-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 12px;
}

.welcome-message h2 {
  margin: 0 0 10px;
  color: var(--text-pure-white);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.welcome-message p {
  margin: 0 auto;
  max-width: 650px;
  color: var(--text-slate-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.suggestions {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestion-btn {
  background: var(--surface-glass-secondary);
  border: 1px solid var(--border-glass-specular);
  color: var(--text-pure-white);
  border-radius: var(--radius-pill, 9999px);
  padding: 8px 16px;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge);
}

.suggestion-btn:hover {
  border-color: var(--accent-neon-orange);
  color: var(--accent-neon-orange);
  transform: translateY(-1px);
}

.message {
  display: flex;
  width: 100%;
}

.message.user {
  justify-content: flex-end;
}

.message.assistant {
  justify-content: flex-start;
}

.message-bubble {
  max-width: 78%;
  padding: 13px 17px;
  border-radius: 17px;
  font-size: 0.9rem;
  line-height: 1.65;
  word-wrap: break-word;
  white-space: pre-wrap;
  font-family: var(--font-primary);
}

.message.user .message-bubble {
  background: var(--accent-neon-orange);
  color: #ffffff;
  border-bottom-right-radius: 4px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255, 95, 31, 0.35);
}

.message.assistant .message-bubble {
  background: var(--surface-glass-secondary);
  color: #eeeeef;
  border: 1px solid var(--border-glass-specular);
  border-bottom-left-radius: 4px;
  box-shadow: inset 0 1px 0 var(--highlight-glass-edge);
}

.typing {
  display: flex;
  align-items: center;
  gap: 5px;
}

.typing span {
  width: 7px;
  height: 7px;
  background: var(--text-slate-muted);
  border-radius: 50%;
  animation: typing 1.2s infinite ease-in-out;
}

.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-input-area {
  padding: 1.25rem 1.5rem;
  background: var(--surface-glass-secondary);
  border-top: 1px solid var(--border-glass-specular);
}

.chat-input-form {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.chat-input {
  flex: 1;
  min-height: 48px;
  max-height: 140px;
  resize: none;
  padding: 14px 16px;
  background: #000000;
  border: 1px solid var(--border-glass-specular);
  border-radius: var(--radius-card-small, 12px);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-input:focus {
  border-color: var(--accent-neon-orange);
  box-shadow: 0 0 12px var(--glow-neon-ambient);
}

.chat-input::placeholder {
  color: var(--text-dim);
}

.send-button {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: none;
  border-radius: var(--radius-card-small, 12px);
  background: var(--accent-neon-orange);
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 95, 31, 0.35);
  transition: transform 0.15s ease, background-color 0.2s ease, opacity 0.15s ease;
}

.send-button:hover {
  background: var(--accent-neon-orange-hover);
  transform: translateY(-1px);
}

.send-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.input-hint {
  text-align: center;
  margin: 8px 0 0;
  color: var(--text-dim);
  font-family: var(--font-primary);
  font-size: 0.7rem;
}

.chat-footer-note {
  padding: 12px 24px;
  background: var(--surface-glass-secondary);
  border-top: 1px solid var(--border-glass-specular);
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-footer-note .disclaimer {
  color: var(--text-dim);
  font-family: var(--font-primary);
  font-size: 0.74rem;
  margin: 0;
  text-align: center;
  line-height: 1.6;
  max-width: 800px;
}

@media (max-width: 768px) {
  .chat-page-wrapper {
    padding: 1rem 0.75rem 2rem;
  }
  .chat-container {
    min-height: 600px;
    border-radius: var(--radius-card-medium, 16px);
  }
  .chat-header {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .chat-messages {
    padding: 16px 12px;
  }
  .message-bubble {
    max-width: 88%;
  }
}
/* ==========================================================================
   38. PROMOTIONAL VALUE ANALYZER (BONUS-ROLLOVER-CALCULATOR.PHP)
   ========================================================================== */
.game-toggle,
.type-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.game-toggle button,
.type-toggle button {
  flex: 1;
  background: #000000;
  border: 1px solid var(--border-glass-specular);
  color: var(--text-slate-muted);
  padding: 11px 0;
  border-radius: var(--radius-tile-small, 8px);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.game-toggle button:hover,
.type-toggle button:hover {
  border-color: rgba(255, 95, 31, 0.4);
  color: var(--text-pure-white);
}

.game-toggle button.sel,
.type-toggle button.sel {
  border-color: var(--accent-neon-orange);
  color: var(--accent-neon-orange);
  background: rgba(255, 95, 31, 0.1);
  box-shadow: 0 0 12px rgba(255, 95, 31, 0.2);
}
/* ==========================================================================
   39. MORE NEWS
   ========================================================================== */
.more-news{margin-top:40px;background:#10121a;border:1px solid #23262f;border-radius:16px;padding:24px 28px;}
.more-news-title{color:#00f7ff;font-size:1.05rem;font-weight:800;text-transform:uppercase;letter-spacing:1px;margin-bottom:16px;}
.more-news-list{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:10px 32px;margin:0;padding:0;}
.more-news-list li{display:flex;justify-content:space-between;gap:12px;border-bottom:1px solid #1d2029;padding-bottom:10px;}
.more-news-list a{color:#ffffff;font-weight:600;font-size:0.9rem;text-decoration:none;}
.more-news-list a:hover{color:#00f7ff;}
.more-news-list span{color:#8b93a1;font-size:0.75rem;white-space:nowrap;}
@media (max-width:768px){.more-news-list{grid-template-columns:1fr;}}   