/* ==============================
   9096BET — Corporate Landing + Blog
   Dark enterprise style based on real 9096bet.com
   Hero + Feature Cards + Game Showcase + Blog section
   NOT a blog, NOT 777win card-grid
   ============================== */

:root {
  --bg: #111920;
  --bg-2: #182029;
  --bg-3: #1e2a35;
  --bg-card: #1a2430;
  --green: #509049;
  --green-light: #5da854;
  --green-dark: #3d7038;
  --green-glow: rgba(80,144,73,0.15);
  --white: #ffffff;
  --text: #e8eaed;
  --text-2: #9aa5b4;
  --text-3: #5f6d7e;
  --border: rgba(255,255,255,0.08);
  --border-2: rgba(255,255,255,0.04);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 20px rgba(80,144,73,0.15);
  --font: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-light); text-decoration: none; transition: 0.15s; }
a:hover { color: var(--white); }
ul, ol { list-style: none; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ==============================
   HEADER — fixed dark, enterprise
   ============================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,25,32,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.header__logo {
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  display: flex; align-items: center; gap: 2px;
}
.header__logo em { font-style: normal; color: var(--green); }
.header__nav { display: flex; gap: 4px; }
.header__nav a {
  color: var(--text-2); font-size: 0.875rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm); transition: 0.15s;
}
.header__nav a:hover { color: var(--white); background: var(--border); }
.header__actions { display: flex; gap: 8px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { width: 20px; height: 2px; background: var(--white); border-radius: 1px; }
@media (max-width: 900px) {
  .header__nav { display: none; }
  .hamburger { display: flex; }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; top: 0; right: -300px; width: 300px; height: 100vh;
  background: var(--bg-2); z-index: 200; transition: right 0.3s;
  padding: 72px 24px 24px;
}
.mobile-drawer.active { right: 0; }
.mobile-drawer__overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 199;
  opacity: 0; pointer-events: none; transition: 0.3s;
}
.mobile-drawer__overlay.active { opacity: 1; pointer-events: auto; }
.mobile-drawer a {
  display: block; padding: 12px 0; color: var(--text); font-weight: 500;
  border-bottom: 1px solid var(--border); font-size: 0.9375rem;
}

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 24px; font-size: 0.875rem; font-weight: 700;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: all 0.2s; font-family: var(--font); text-decoration: none;
}
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-light); color: var(--white); box-shadow: var(--shadow-glow); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn--outline:hover { border-color: var(--green); color: var(--green); }
.btn--lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius); }
.btn--sm { padding: 7px 16px; font-size: 0.8125rem; }

/* ==============================
   HERO — big CTA, enterprise landing
   ============================== */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(80,144,73,0.08) 0%, transparent 60%);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 50px;
  background: var(--green-glow); border: 1px solid rgba(80,144,73,0.25);
  font-size: 0.75rem; font-weight: 700; color: var(--green-light);
  margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.05em;
}
.hero h1 {
  font-size: 3rem; font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero__desc {
  font-size: 1.125rem; color: var(--text-2); max-width: 560px;
  margin: 0 auto 32px; line-height: 1.6;
}
.hero__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 48px; justify-content: center; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--border);
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero__stat-val { font-size: 1.5rem; font-weight: 700; color: var(--white); }
.hero__stat-label { font-size: 0.75rem; color: var(--text-3); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 600px) { .hero h1 { font-size: 2rem; } .hero { padding: 120px 0 60px; } }

/* ==============================
   FEATURE CARDS — icon grid, enterprise
   ============================== */
.features { padding: 60px 0; }
.features__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 900px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .features__grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
  transition: 0.2s;
}
.feature-card:hover { border-color: var(--green); box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.feature-card__icon { font-size: 2rem; margin-bottom: 12px; }
.feature-card__title { font-size: 0.875rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.feature-card__desc { font-size: 0.75rem; color: var(--text-3); }

/* ==============================
   SECTION HEADERS
   ============================== */
.sec-head { text-align: center; margin-bottom: 40px; }
.sec-head__label {
  display: inline-block; font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--green); margin-bottom: 8px;
}
.sec-head__title { font-size: 1.75rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.sec-head__desc { color: var(--text-2); max-width: 500px; margin: 0 auto; }

/* ==============================
   GAME GRID — dark cards with glow
   ============================== */
.games-section { padding: 60px 0; background: var(--bg-2); }
.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .game-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .game-grid { grid-template-columns: 1fr; } }
.game-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: 0.2s;
  text-decoration: none; display: block;
}
.game-card:hover { border-color: var(--green); box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.game-card__thumb {
  width: 100%; aspect-ratio: 4/3; background: var(--bg-3);
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.game-card__body { padding: 14px; }
.game-card__name { font-size: 0.875rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.game-card__provider { font-size: 0.75rem; color: var(--text-3); }
.game-card__meta { display: flex; gap: 10px; margin-top: 6px; font-size: 0.75rem; }
.game-card__rtp { color: var(--green); font-weight: 700; }
.game-card__vol { color: var(--text-3); }

/* ==============================
   BLOG/GUIDES SECTION
   ============================== */
.blog-section { padding: 60px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; transition: 0.2s;
}
.blog-card:hover { border-color: var(--green); box-shadow: var(--shadow-glow); }
.blog-card__cat {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--green); margin-bottom: 10px;
}
.blog-card__title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.35; }
.blog-card__title a { color: var(--white); }
.blog-card__title a:hover { color: var(--green-light); }
.blog-card__excerpt { font-size: 0.8125rem; color: var(--text-2); margin-bottom: 12px; }
.blog-card__meta { font-size: 0.75rem; color: var(--text-3); display: flex; gap: 10px; }
.blog-card__meta a { color: var(--text-2); }

/* ==============================
   FAQ
   ============================== */
.faq-section { padding: 60px 0; background: var(--bg-2); }
.faq__list { max-width: 700px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 0.9375rem; font-weight: 600; text-align: left;
  font-family: var(--font); gap: 16px;
}
.faq__icon { color: var(--green); transition: 0.2s; }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.25s; }
.faq__answer-inner { padding: 0 0 16px; color: var(--text-2); font-size: 0.875rem; }
.faq__item.active .faq__icon { transform: rotate(45deg); }
.faq__item.active .faq__answer { max-height: 500px; }

/* ==============================
   SINGLE PAGES — two column
   ============================== */
.page-header { padding: 96px 0 24px; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: 2rem; color: var(--white); margin-bottom: 8px; }
.page-header__cat {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--green); margin-bottom: 10px;
}
.page-header__byline { display: flex; align-items: center; gap: 10px; font-size: 0.8125rem; color: var(--text-2); }
.page-header__byline img { width: 32px; height: 32px; border-radius: 50%; }
.page-header__byline a { color: var(--green-light); font-weight: 600; }

.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; padding: 32px 0; }
@media (max-width: 900px) { .content-layout { grid-template-columns: 1fr; } }

/* Prose */
.prose { color: var(--text); line-height: 1.75; }
.prose h2 { font-size: 1.375rem; font-weight: 700; color: var(--white); margin: 32px 0 12px; }
.prose h3 { font-size: 1.125rem; font-weight: 700; color: var(--white); margin: 24px 0 8px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin-bottom: 16px; padding-left: 24px; }
.prose li { margin-bottom: 4px; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--green-light); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--white); }
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.875rem; }
.prose th, .prose td { padding: 10px 12px; border: 1px solid var(--border); }
.prose th { background: var(--bg-3); color: var(--white); font-weight: 600; text-align: left; }

/* Sidebar */
.sidebar-widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin-bottom: 16px;
}
.sidebar-widget__title {
  font-size: 0.8125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--green); padding-bottom: 10px;
  border-bottom: 1px solid var(--border); margin-bottom: 12px;
}
.specs-table { width: 100%; }
.specs-table tr { border-bottom: 1px solid var(--border-2); }
.specs-table th, .specs-table td { padding: 8px 0; font-size: 0.8125rem; }
.specs-table th { color: var(--text-3); font-weight: 500; text-align: left; width: 40%; }
.specs-table td { color: var(--white); font-weight: 600; }

/* Author box */
.author-box {
  display: flex; gap: 14px; padding: 20px; margin-top: 32px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); border-left: 3px solid var(--green);
}
.author-box__avatar { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; }
.author-box__name { font-weight: 700; color: var(--white); margin-bottom: 2px; }
.author-box__name a { color: var(--white); }
.author-box__bio { font-size: 0.8125rem; color: var(--text-2); }
.author-box__name a:hover { color: var(--green-light); }
.author-box:hover { border-left-color: var(--green-light); }

/* Breadcrumbs */
.breadcrumbs { font-size: 0.75rem; color: var(--text-3); padding: 8px 0; background: var(--bg-2); }
.breadcrumbs a { color: var(--text-2); }
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs__sep { margin: 0 4px; }

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px;
  border-radius: 4px; font-size: 0.6875rem; font-weight: 700;
}
.badge--green { background: var(--green-glow); color: var(--green-light); border: 1px solid rgba(80,144,73,0.25); }
.badge--gray { background: rgba(255,255,255,0.05); color: var(--text-2); }

/* Archive */
.archive-header { padding: 96px 0 24px; background: var(--bg-2); border-bottom: 1px solid var(--border); text-align: center; }
.archive-header h1 { font-size: 1.75rem; color: var(--white); margin-bottom: 6px; }
.archive-header p { color: var(--text-2); max-width: 500px; margin: 0 auto; }

/* Cat nav */
.cat-nav { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; justify-content: center; }
.cat-nav a {
  padding: 6px 14px; border-radius: var(--radius-sm); font-size: 0.8125rem;
  font-weight: 600; color: var(--text-2); background: var(--bg-card);
  border: 1px solid var(--border); transition: 0.15s;
}
.cat-nav a:hover, .cat-nav a.active { background: var(--green); color: var(--white); border-color: var(--green); }

/* ==============================
   FOOTER — dark enterprise
   ============================== */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 48px 0 0; margin-top: 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__heading {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--white); margin-bottom: 12px;
}
.footer__desc { font-size: 0.8125rem; color: var(--text-3); line-height: 1.6; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 0.8125rem; color: var(--text-3); }
.footer__links a:hover { color: var(--green); }
.footer__bottom {
  border-top: 1px solid var(--border); padding: 16px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.75rem; color: var(--text-3);
}
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { color: var(--text-3); }
.footer__legal a:hover { color: var(--green); }

/* Pagination */
.pagination { text-align: center; padding: 32px 0; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-sm); margin: 0 2px;
  background: var(--bg-card); color: var(--text-2); font-weight: 600;
  border: 1px solid var(--border); font-size: 0.8125rem;
}
.pagination .current { background: var(--green); color: var(--white); border-color: var(--green); }

/* Skip */
.skip-link { position: absolute; top: -100%; left: 16px; padding: 6px 16px; background: var(--green); color: var(--white); z-index: 999; border-radius: 6px; }
.skip-link:focus { top: 8px; }

/* SEO content */
.seo-content h2 { font-size: 1.25rem; color: var(--white); margin-bottom: 10px; }
.seo-content h3 { font-size: 1rem; color: var(--white); margin: 20px 0 6px; }
.seo-content p { color: var(--text-2); line-height: 1.7; margin-bottom: 10px; font-size: 0.9375rem; }

/* Game card thumbnail image */
.game-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.game-card__thumb {
  height: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
}
