/*
Theme Name: 006bet Casino
Theme URI: https://006bet-br.com
Description: Premium casino affiliate theme for 006bet — Red Energy mood
Version: 1.0.0
Author: 006bet
Text Domain: 006bet
*/

/* ========== CSS VARIABLES ========== */
:root {
  --bg-body: #0a0a0f;
  --bg-header: #0f0f1a;
  --bg-card: #14141f;
  --bg-card-alt: #1c1c2e;
  --accent: #FF3333;
  --accent-hover: #FF5555;
  --accent-dark: #CC0000;
  --text: #FFFFFF;
  --text-muted: #c4c7d0;
  --text-dim: #8B8FA3;
  --border: rgba(255, 51, 51, 0.15);
  --border-light: rgba(255, 255, 255, 0.08);
  --max-width: 1120px;
  --radius: 12px;
  --radius-sm: 8px;
  --btn-gradient: linear-gradient(135deg, #FF3333, #CC0000);
  --hero-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a0a0a 50%, #0a0a0f 100%);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-btn: 0 8px 24px rgba(255, 51, 51, 0.3);
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --gutter: 24px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg-body);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ========== HEADER ========== */
#site-header {
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.site-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -0.02em;
}
.site-logo .accent { color: var(--accent); }
.site-logo:hover { color: var(--text); }

/* ========== DESKTOP NAV ========== */
#main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
#main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
#main-nav a:hover {
  color: var(--accent-hover);
  background: rgba(255, 51, 51, 0.08);
}
.nav-cta {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
  margin-left: 8px;
}
.nav-cta-enter {
  background: transparent !important;
  border: 1px solid var(--border) !important;
  color: var(--text-muted) !important;
}
.nav-cta-enter:hover { border-color: var(--accent) !important; color: var(--accent) !important; }
.nav-cta-register {
  background: var(--btn-gradient) !important;
  color: #fff !important;
  box-shadow: var(--shadow-btn);
}
.nav-cta-register:hover { opacity: 0.9; }

/* ========== HAMBURGER ========== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ========== MOBILE OVERLAY ========== */
#g78-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
}
#g78-overlay.active { display: block; }

#g78-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: #1a0a0a;
  z-index: 9999;
  padding: 24px;
  overflow-y: auto;
  overflow-x: hidden;
  border-right: 2px solid var(--accent);
  transform: translateX(-110%);
  transition: transform 0.3s ease;
}
#g78-nav.open { transform: translateX(0); }

.g78-nav-list { list-style: none; padding: 0; margin: 0 0 24px 0; }
.g78-nav-list a {
  display: block;
  padding: 12px 0;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.g78-nav-list a:hover { color: var(--accent); padding-left: 8px; }

.g78-cta {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.g78-cta .nav-cta { flex: 1; text-align: center; display: inline-block; padding: 12px 0 !important; margin-left: 0 !important; }

#g78-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  padding: 4px 12px;
  line-height: 1;
}
#g78-close:hover { color: var(--accent); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  min-height: 44px;
}
.btn-primary { background: var(--btn-gradient); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-large { padding: 16px 36px; font-size: 1.05rem; min-height: 48px; }
.btn-white { background: #fff; color: var(--bg-body); }
.btn-white:hover { opacity: 0.95; }

/* ========== HERO ========== */
.hero-section {
  background: var(--hero-gradient);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,51,51,0.15), transparent 40%);
  pointer-events: none;
}
.hero-section .container {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,51,51,0.15);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero-section h1 .accent { color: var(--accent); }
.hero-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image { flex: 0 0 400px; text-align: right; }
.hero-image img { border-radius: var(--radius); box-shadow: var(--shadow-card); }

/* ========== TRUST BAR ========== */
.trust-section {
  background: var(--bg-card);
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 48px;
  animation: scrollTrust 20s linear infinite;
  width: max-content;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
@keyframes scrollTrust { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ========== SECTION ========== */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-card); padding: 64px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.section-title h2 .accent { color: var(--accent); }
.section-title .subtitle { color: var(--text-muted); font-size: 1rem; }

/* ========== GLASS CARDS ========== */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.glass-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.glass-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,51,51,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.glass-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.glass-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ========== FEATURES LIST ========== */
.features-list { list-style: none; padding: 0; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.feature-item:last-child { border-bottom: none; }
.feature-icon {
  width: 40px; height: 40px;
  background: rgba(255,51,51,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.feature-item p { color: var(--text-muted); font-size: 0.88rem; }

/* ========== GAMES GRID ========== */
.games-section { padding: 64px 0; }
.game-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; justify-content: center; }
.game-tab {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}
.game-tab:hover, .game-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.game-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.game-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 2px solid var(--accent);
}
.game-card-body { padding: 10px 12px; }
.game-card-title { font-size: 0.82rem; font-weight: 700; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card-provider { font-size: 0.72rem; color: var(--text-dim); }
.game-card-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.game-card { position: relative; }
.game-card-play {
  position: absolute;
  top: 0; left: 0; right: 0;
  aspect-ratio: 1;
  background: rgba(255,51,51,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.game-card:hover .game-card-play { opacity: 1; }

/* ========== BLOG GRID ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s;
}
.blog-card:hover { transform: translateY(-2px); }
.blog-card-thumb { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 16px; }
.blog-card-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.blog-card-body h3 a { color: var(--text); text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 12px; line-height: 1.5; }
.blog-card-meta { color: var(--text-dim); font-size: 0.78rem; }

/* ========== FAQ ACCORDION ========== */
.faq-section { padding: 64px 0; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-card);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text);
  font-family: var(--font);
}
.faq-question:hover { background: var(--bg-card-alt); }
.faq-arrow { transition: transform 0.2s; font-size: 0.8rem; color: var(--accent); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 16px 20px; }

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  padding: 64px 0;
  text-align: center;
}
.cta-section h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-white { color: var(--accent-dark); }
.cta-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-actions .btn-outline:hover { border-color: #fff; }

/* ========== 18+ DISCLAIMER ========== */
.responsible-section { padding: 48px 0; text-align: center; }
.responsible-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,51,51,0.1);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.responsible-section p { color: var(--text-dim); font-size: 0.82rem; line-height: 1.6; max-width: 700px; margin: 0 auto; }

/* ========== FOOTER ========== */
#site-footer {
  background: var(--bg-header);
  border-top: 2px solid var(--accent);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--text-dim); font-size: 0.82rem; line-height: 1.6; margin-top: 12px; }
.footer-brand .age-pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 8px;
}
.footer-col h2 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
}
.footer-col a:hover { color: var(--accent-hover); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.78rem;
}
.footer-bottom a { color: var(--accent); }

/* ========== MOBILE FLOAT BAR ========== */
.mobile-float-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--bg-header);
  border-top: 1px solid var(--border);
  padding: 10px var(--gutter);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 9990;
  gap: 12px;
  justify-content: center;
  align-items: center;
  animation: floatBarIn 0.3s ease;
}
.mobile-float-bar .btn { flex: 1; text-align: center; padding: 12px 0; font-size: 0.88rem; }
@keyframes floatBarIn { 0% { transform: translateY(100%); } 100% { transform: translateY(0); } }

/* ========== SUBPAGE HERO ========== */
.subpage-hero {
  background: var(--hero-gradient);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,51,51,0.12), transparent 45%);
  pointer-events: none;
}
.subpage-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.subpage-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* ========== SUBPAGE INLINE IMAGE ========== */
.subpage-inline-img {
  margin: 32px auto;
  max-width: 880px;
  padding: 0 var(--gutter);
  text-align: center;
}
.subpage-inline-img img {
  width: 100%;
  max-width: 880px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: block;
  margin: 0 auto;
}
.subpage-inline-img figcaption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .subpage-inline-img { margin: 24px auto; }
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }

/* ========== SINGLE POST ========== */
.single-post-page { padding-bottom: 64px; }
.content-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px var(--gutter);
}
.content-shell h2 { font-size: 1.5rem; margin: 32px 0 16px; }
.content-shell h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.content-shell p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.8; }
.content-shell ul, .content-shell ol { margin: 12px 0 16px 24px; color: var(--text-muted); }
.content-shell li { margin-bottom: 8px; }
.content-shell img { border-radius: var(--radius-sm); margin: 20px 0; }

.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 32px;
}
.author-box p { font-weight: 700; margin-bottom: 4px; }
.author-box time { color: var(--text-dim); font-size: 0.82rem; }

.related-posts { padding: 64px 0; }
.related-posts h2 { font-size: 1.5rem; margin-bottom: 24px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s;
}
.related-card:hover { transform: translateY(-2px); }
.related-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.related-card h3 { padding: 12px 16px 4px; font-size: 0.9rem; }
.related-card time { padding: 0 16px 12px; color: var(--text-dim); font-size: 0.78rem; }

/* ========== GSAP ANIMATION STUBS ========== */
.gsap-hidden { opacity: 0; transform: translateY(30px); }
.gsap-hidden-left { opacity: 0; transform: translateX(-30px); }
.gsap-hidden-right { opacity: 0; transform: translateX(30px); }
.gsap-hidden-scale { opacity: 0; transform: scale(0.95); }
.gsap-fade { opacity: 0; }

/* ========== PRODUCTION HOME MARKER ========== */
/* G78_PRODUCTION_HOME */

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-section .container { flex-direction: column; }
  .hero-image { flex: none; width: 100%; text-align: center; }
  .hero-image img { max-width: 400px; margin: 0 auto; }
  .game-grid { grid-template-columns: repeat(4, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Mobile nav overrides */
  #main-nav { display: none !important; }
  .nav-toggle { display: block !important; }
  .mobile-float-bar { display: flex; }
  body { padding-bottom: 72px; }

  .hero-section { padding: 48px 0 40px; }
  .hero-section h1 { font-size: 1.8rem; }
  .hero-section p { font-size: 0.95rem; }
  .hero-image { display: none; }
  .section { padding: 48px 0; }
  .section-alt { padding: 48px 0; }
  .section-title h2 { font-size: 1.5rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 1.6rem; }
  .subpage-hero h1 { font-size: 1.6rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .feature-item { flex-direction: column; }
}

@media (max-width: 480px) {
  .game-grid { gap: 8px; }
  .game-card-body { padding: 6px 8px; }
  .glass-card { padding: 20px; }
  .section-title h2 { font-size: 1.3rem; }
}


/* HERMES_DESIGN_SKILL_SKIN_V1
   popular-web-designs: kraken.md
   layout-pack: App Dashboard
   css-pack: premium-black-gold with controlled glow and luxury media crops
   This block is generated per domain so new sites cannot fall back to one old theme skin.
*/
:root {
  --hds-bg: #f8fafc;
  --hds-bg-2: #e8eef7;
  --hds-surface: #ffffff;
  --hds-text: #0f172a;
  --hds-muted: #475569;
  --hds-accent: #0ea5e9;
  --hds-accent-2: #22c55e;
  --hds-warn: #f59e0b;
  --hds-radius: 12px;
  --hds-shadow: 0 18px 54px rgba(0,0,0,.22);
}
body {
  background:
    linear-gradient(135deg,var(--hds-bg) 0%,var(--hds-bg-2) 58%,color-mix(in srgb,var(--hds-accent) 12%,var(--hds-bg)) 100%) !important;
  color: var(--hds-text) !important;
  letter-spacing: 0 !important;
}
.site-header,#site-header,header.site-header {
  background: color-mix(in srgb,var(--hds-bg) 88%,#000 12%) !important;
  border-bottom: 1px solid color-mix(in srgb,var(--hds-accent) 24%,transparent) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.18) !important;
}
.hero,.factory-hero,.gw44-hero,.page-hero,.subpage-hero {
  background:
    radial-gradient(circle at 82% 18%,color-mix(in srgb,var(--hds-accent) 22%,transparent),transparent 32%),
    linear-gradient(135deg,var(--hds-bg),var(--hds-bg-2)) !important;
}
.hero h1,.factory-hero h1,.gw44-hero h1,.page-hero h1,.subpage-hero h1 {
  color: var(--hds-text) !important;
  letter-spacing: 0 !important;
}
.btn,.button,.wp-block-button__link,.gw44-btn {
  border-radius: var(--hds-radius) !important;
  background: linear-gradient(135deg,var(--hds-accent),var(--hds-accent-2)) !important;
  color: color-mix(in srgb,var(--hds-bg) 86%,#000) !important;
  box-shadow: 0 12px 30px color-mix(in srgb,var(--hds-accent) 24%,transparent) !important;
}
.card,.game-card,.real-game-card,.promo-card,.info-card,.trust-card,article[class*="card"],.footer-col {
  border-radius: var(--hds-radius) !important;
  background: color-mix(in srgb,var(--hds-surface) 88%,transparent) !important;
  border: 1px solid color-mix(in srgb,var(--hds-accent) 18%,transparent) !important;
  box-shadow: var(--hds-shadow);
}
.game-card img,.real-game-card img,.blog-card img,article img {
  object-fit: cover !important;
}
.section-title,h2,h3 {
  letter-spacing: 0 !important;
}
a {
  color: var(--hds-accent) !important;
}
#site-footer,.site-footer,footer {
  background: color-mix(in srgb,var(--hds-bg) 92%,#000 8%) !important;
  border-top: 1px solid color-mix(in srgb,var(--hds-accent) 18%,transparent) !important;
}
@media (max-width: 760px) {
  .main-nav ul,.nav-main ul {
    max-width: 100%;
  }
  .hero,.factory-hero,.gw44-hero {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* CSG_MOBILE_MENU_AND_SUBPAGE_BANNER_CONTRACT */
  .main-nav{display:none!important;white-space:normal}
  .main-nav.is-open{display:flex!important}
  .nav-toggle{display:flex}
}
.main-nav.is-open{display:flex!important}

/* === RED TEXT OVERRIDE — 006bet brand identity === */
h1, h2, h3, h4, h5, h6 { color: #FF3333 !important; }
h1 .accent, h2 .accent, h3 .accent { color: #FF5555 !important; }
.section-title h2 { color: #FF3333 !important; }
.section-title .subtitle { color: #FF8888 !important; }
.glass-card h3 { color: #FF3333 !important; }
.feature-item h4 { color: #FF5555 !important; }
.feature-item p { color: #FFFFFF !important; }
a { color: #FF4444; }
a:hover { color: #FF6666; }
.nav-cta-enter { color: #FFFFFF !important; }
.nav-cta-register { color: #FFFFFF !important; }
.footer-col h2 { color: #FF3333 !important; }
.footer-col a { color: #FF6666 !important; }
.footer-col a:hover { color: #FF8888 !important; }
.footer-bottom { color: #FF6666 !important; }
.footer-brand p { color: #c4c7d0 !important; }
.hero-badge { background: #FF3333 !important; color: #FFFFFF !important; }
.responsible-badge { color: #FF3333 !important; }
.faq-question { color: #FF3333 !important; }
.faq-question:hover { color: #FF5555 !important; }
.faq-answer { color: #FFFFFF !important; }
.game-card-title { color: #FF3333 !important; }
.game-card-provider { color: #FF8888 !important; }
.game-card-play { color: #FFFFFF !important; background: #FF3333 !important; }
.btn-primary { background: linear-gradient(135deg, #FF3333, #CC0000) !important; color: #FFFFFF !important; }
.btn-outline { border-color: #FF3333 !important; color: #FF3333 !important; }
.btn-outline:hover { background: #FF3333 !important; color: #FFFFFF !important; }
.btn-white { background: #FF3333 !important; color: #FFFFFF !important; }
.cta-section h2 { color: #FF3333 !important; }
.cta-section p { color: #FF9999 !important; }
.trust-item { color: #FF6666 !important; }
.hero-content p { color: #FFCCCC !important; }
.glass-card p { color: #e0e0e0 !important; }
.section p { color: #e0e0e0 !important; }
.subpage-hero h1 { color: #FF3333 !important; }
.subpage-hero p { color: #FFAAAA !important; }
.subpage-banner-img { border: 2px solid #FF3333 !important; }
.site-logo .accent { color: #FF3333 !important; }
.age-pill { background: #FF3333 !important; color: #FFFFFF !important; }
.mobile-float-bar .btn-outline { border-color: #FF3333 !important; color: #FF3333 !important; }
