/* ==========================================================================
   1xBet Tower Rush Guide — Main Stylesheet
   Dark tech theme, mobile-first responsive design
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary: #0D1117;
  --bg-secondary: #161B22;
  --bg-tertiary: #21262D;
  --accent-blue: #58A6FF;
  --accent-purple: #BC8CFF;
  --accent-green: #3FB950;
  --accent-red: #F85149;
  --accent-yellow: #D29922;
  --text-primary: #F0F6FC;
  --text-secondary: #8B949E;
  --text-tertiary: #484F58;
  --border-color: #30363D;
  --font-heading: 'JetBrains Mono', 'Fira Code', monospace;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --content-max: 768px;
  --page-max: 1440px;
  --nav-height: 64px;
  --section-gap: 80px;
  --pad-mobile: 24px;
  --pad-tablet: 48px;
  --pad-desktop: 64px;
}

/* ---------- 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-body);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-purple); }
ul, ol { padding-left: 1.5em; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.75em;
}
h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.5rem; font-weight: 600; margin-top: 2em; }
h3 { font-size: 1.15rem; font-weight: 600; margin-top: 1.5em; }
p { margin-bottom: 1em; }
strong { font-weight: 600; }
blockquote {
  border-left: 3px solid var(--accent-blue);
  padding: 1em 1.25em;
  margin: 1.5em 0;
  background: var(--bg-secondary);
  border-radius: 0 8px 8px 0;
  color: var(--text-secondary);
  font-style: italic;
}
code {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  background: var(--bg-tertiary);
  padding: 2px 6px;
  border-radius: 4px;
}
hr { border: none; height: 1px; background: var(--border-color); margin: 3em 0; }

/* ---------- Layout ---------- */
.page-wrapper { max-width: var(--page-max); margin: 0 auto; }
.content-wrapper { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--pad-mobile); }
.section { padding: var(--section-gap) 0; }
.section--alt { background: var(--bg-secondary); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-height);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  display: flex; align-items: center;
}
.nav__inner {
  max-width: var(--page-max); margin: 0 auto; width: 100%;
  padding: 0 var(--pad-mobile);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem;
  color: var(--accent-blue); text-decoration: none; white-space: nowrap;
}
.nav__logo:hover { color: var(--accent-purple); }
.nav__links {
  display: none; list-style: none; gap: 1.5rem;
  align-items: center; padding: 0;
}
.nav__links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  text-decoration: none; padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav__links a:hover, .nav__links a.active {
  color: var(--text-primary); border-bottom-color: var(--accent-blue);
}
.nav__cta { display: none; }
.nav__hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 28px; height: 28px; cursor: pointer;
  background: none; border: none; padding: 0;
}
.nav__hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__mobile-menu {
  display: none; position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--bg-secondary); z-index: 999;
  padding: 2rem var(--pad-mobile); overflow-y: auto;
}
.nav__mobile-menu.is-open {
  display: flex; flex-direction: column; gap: 0;
}
.nav__mobile-menu a {
  display: block; padding: 1rem 0; font-size: 1.125rem; font-weight: 500;
  color: var(--text-primary); border-bottom: 1px solid var(--border-color);
  text-decoration: none;
}
.nav__mobile-menu a:hover { color: var(--accent-blue); }
.nav__mobile-menu .cta-primary { margin-top: 1.5rem; text-align: center; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: 1rem 0 0; font-size: 0.8125rem; color: var(--text-tertiary); }
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--accent-blue); }
.breadcrumbs span { margin: 0 0.4em; }

/* ---------- Hero ---------- */
.hero { padding: 3rem 0 2rem; text-align: center; }
.hero h1 { margin-bottom: 0.5em; }
.hero__subtitle {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 600px; margin: 0 auto 1.5em;
}
.hero__cta-row {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-top: 1.5rem;
}
.hero__image {
  margin: 2.5rem auto 0; max-width: 600px;
  border-radius: 4px; overflow: hidden; position: relative;
}
.hero__image img { width: 100%; }

/* ---------- CTA Buttons ---------- */
.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: var(--bg-primary); font-family: var(--font-body);
  font-weight: 600; font-size: 1rem;
  padding: 14px 32px; border-radius: 9999px;
  border: none; cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s; line-height: 1.4;
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(88, 166, 255, 0.3);
  color: var(--bg-primary);
}
.cta-secondary {
  display: inline-block; background: transparent;
  color: var(--accent-blue); font-family: var(--font-body);
  font-weight: 600; font-size: 1rem;
  padding: 12px 28px; border-radius: 9999px;
  border: 2px solid var(--accent-blue);
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s; line-height: 1.4;
}
.cta-secondary:hover {
  background: rgba(88, 166, 255, 0.1);
  color: var(--accent-blue); transform: translateY(-2px);
}

/* ---------- Cards (Glassmorphism) ---------- */
.card {
  background: rgba(22, 27, 34, 0.7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(48, 54, 61, 0.5);
  border-radius: 12px; padding: 24px; margin-bottom: 1.5rem;
}
.card h3 { margin-top: 0; }
.card--highlight { border-color: var(--accent-blue); box-shadow: 0 0 20px rgba(88, 166, 255, 0.08); }
.card--warning { border-left: 4px solid var(--accent-yellow); }
.card--danger { border-left: 4px solid var(--accent-red); }
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin: 2rem 0; }

/* ---------- Data Tables ---------- */
.table-wrap {
  overflow-x: auto; margin: 1.5rem 0;
  border-radius: 8px; border: 1px solid var(--border-color);
}
table {
  width: 100%; border-collapse: collapse;
  font-family: var(--font-mono); font-size: 0.8125rem;
}
th {
  background: var(--bg-tertiary); color: var(--accent-blue);
  padding: 12px 14px; text-align: left;
  border-bottom: 2px solid var(--border-color);
  font-weight: 600; white-space: nowrap;
}
td {
  padding: 10px 14px; border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}
tr:last-child td { border-bottom: none; }
tr:hover { background: rgba(88, 166, 255, 0.05); }
.mult-low { color: var(--accent-red); font-weight: 600; }
.mult-mid { color: var(--accent-yellow); font-weight: 600; }
.mult-high { color: var(--accent-green); font-weight: 600; }

/* ---------- Prediction Counter ---------- */
.prediction-counter-wrap { text-align: center; padding: 2rem 0; }
.prediction-counter-wrap .label {
  font-size: 0.8125rem; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem;
}
.prediction-counter {
  position: relative; height: 3.5rem; overflow: hidden;
  display: flex; justify-content: center;
}
.prediction-counter__track {
  display: flex; flex-direction: column;
  animation: scroll-multipliers 21s infinite;
}
.prediction-counter__value {
  font-family: var(--font-mono); font-size: 3rem; font-weight: 700;
  height: 3.5rem; display: flex; align-items: center; justify-content: center;
}
@keyframes scroll-multipliers {
  0%, 4.5% { transform: translateY(0); }
  5%, 18.5% { transform: translateY(-3.5rem); }
  19%, 32.5% { transform: translateY(-7rem); }
  33%, 46.5% { transform: translateY(-10.5rem); }
  47%, 60.5% { transform: translateY(-14rem); }
  61%, 74.5% { transform: translateY(-17.5rem); }
  75%, 89.5% { transform: translateY(-21rem); }
  90%, 100% { transform: translateY(0); }
}
.prediction-counter__note {
  font-size: 0.6875rem; color: var(--text-tertiary);
  margin-top: 0.75rem; font-style: italic;
}

/* ---------- Dashboard Demo ---------- */
.dashboard {
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  border-radius: 12px; padding: 1.5rem; margin: 2rem 0;
}
.dashboard__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; font-family: var(--font-mono);
  font-size: 0.75rem; color: var(--text-secondary);
}
.dashboard__status { display: flex; align-items: center; gap: 0.5rem; }
.dashboard__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-green); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.dashboard__rounds { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.dashboard__round {
  background: var(--bg-tertiary); border-radius: 6px;
  padding: 6px 4px; text-align: center;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  transition: transform 0.2s;
}
.dashboard__round:hover { transform: scale(1.08); }
.dashboard__round--red { color: var(--accent-red); }
.dashboard__round--yellow { color: var(--accent-yellow); }
.dashboard__round--green { color: var(--accent-green); }
.dashboard__trend {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 0.8125rem;
}

/* ---------- Steps ---------- */
.steps { counter-reset: step-counter; margin: 2rem 0; }
.step {
  counter-increment: step-counter;
  padding: 1.5rem; margin-bottom: 1.5rem;
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  border-radius: 12px; position: relative; padding-left: 4.5rem;
}
.step::before {
  content: counter(step-counter);
  position: absolute; left: 1.25rem; top: 1.25rem;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: var(--bg-primary); font-family: var(--font-heading);
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.step h3 { margin-top: 0; }

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border: 1px solid var(--border-color); border-radius: 8px;
  margin-bottom: 0.75rem; overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.25rem; font-family: var(--font-heading);
  font-weight: 600; font-size: 0.9375rem; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; background: var(--bg-secondary);
  color: var(--text-primary); transition: background 0.2s;
}
.faq-item summary:hover { background: var(--bg-tertiary); }
.faq-item summary::after {
  content: "+"; font-size: 1.25rem; color: var(--accent-blue);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__body {
  padding: 1rem 1.25rem 1.25rem; background: var(--bg-primary);
  color: var(--text-secondary); line-height: 1.7;
}

/* ---------- Callout Box ---------- */
.callout {
  padding: 1.25rem 1.5rem; border-radius: 8px;
  margin: 1.5rem 0; border: 1px solid var(--border-color);
}
.callout--info { background: rgba(88, 166, 255, 0.08); border-color: var(--accent-blue); }
.callout--warning { background: rgba(210, 153, 34, 0.08); border-color: var(--accent-yellow); }
.callout--danger { background: rgba(248, 81, 73, 0.08); border-color: var(--accent-red); }
.callout--success { background: rgba(63, 185, 80, 0.08); border-color: var(--accent-green); }
.callout__title { font-family: var(--font-heading); font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.5em; }

/* ---------- Rating Badge ---------- */
.rating-badge {
  display: inline-flex; align-items: baseline; gap: 0.25em;
  font-family: var(--font-mono); font-size: 3rem; font-weight: 700;
  color: var(--accent-blue);
}
.rating-badge span { font-size: 1.25rem; color: var(--text-secondary); }

/* ---------- Risk Level ---------- */
.risk-level {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 600;
  padding: 4px 12px; border-radius: 9999px;
}
.risk-level--low { background: rgba(63, 185, 80, 0.15); color: var(--accent-green); }
.risk-level--medium { background: rgba(210, 153, 34, 0.15); color: var(--accent-yellow); }
.risk-level--high { background: rgba(248, 81, 73, 0.15); color: var(--accent-red); }

/* ---------- Pros & Cons ---------- */
.pros-cons { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.pros-cons__list { list-style: none; padding: 0; }
.pros-cons__list li {
  padding: 0.5em 0 0.5em 1.75em; position: relative;
  border-bottom: 1px solid var(--border-color);
}
.pros-cons__list li:last-child { border-bottom: none; }
.pros-cons__list--pro li::before {
  content: "+"; position: absolute; left: 0;
  color: var(--accent-green); font-family: var(--font-mono);
  font-weight: 700; font-size: 1.125rem;
}
.pros-cons__list--con li::before {
  content: "-"; position: absolute; left: 0;
  color: var(--accent-red); font-family: var(--font-mono);
  font-weight: 700; font-size: 1.125rem;
}

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  border-radius: 12px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.blog-card__image {
  width: 100%; height: 180px; object-fit: cover; background: var(--bg-tertiary);
}
.blog-card__body { padding: 1.25rem; }
.blog-card__tag {
  display: inline-block; font-family: var(--font-mono);
  font-size: 0.6875rem; padding: 3px 10px;
  background: rgba(88, 166, 255, 0.12); color: var(--accent-blue);
  border-radius: 9999px; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.blog-card__title {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 0.5rem; line-height: 1.3;
}
.blog-card__excerpt { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.blog-card__meta { margin-top: 0.75rem; font-size: 0.75rem; color: var(--text-tertiary); }

/* ---------- Image Treatment ---------- */
.img-styled { filter: grayscale(100%) brightness(0.8); mix-blend-mode: luminosity; }
.img-container { position: relative; border-radius: 4px; overflow: hidden; }
.img-container::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(88, 166, 255, 0.15); pointer-events: none;
}

/* ---------- Sticky Mobile CTA ---------- */
.mobile-sticky-cta {
  display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: var(--bg-primary); text-align: center; padding: 14px 24px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem;
  text-decoration: none; transition: opacity 0.3s;
}
.mobile-sticky-cta:hover { color: var(--bg-primary); }
body.page-responsible-gambling .mobile-sticky-cta { display: none; }

/* ---------- Disclaimer Banner ---------- */
.disclaimer-banner {
  background: rgba(248, 81, 73, 0.08); border: 1px solid var(--accent-red);
  border-radius: 8px; padding: 1rem 1.25rem; margin: 1.5rem 0;
  font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.6;
}

/* ---------- CTA Box ---------- */
.cta-box {
  background: rgba(22, 27, 34, 0.7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--accent-blue); border-radius: 12px;
  padding: 1.5rem; margin: 2rem 0; text-align: center;
}
.cta-box p { margin-bottom: 1rem; color: var(--text-secondary); }
.cta-box strong { color: var(--text-primary); }

/* ---------- Signal Cards ---------- */
.signal-card {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  border-radius: 10px; margin-bottom: 1rem;
}
.signal-card__icon {
  flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 1.25rem;
}
.signal-card__icon--green { background: rgba(63, 185, 80, 0.15); color: var(--accent-green); }
.signal-card__icon--yellow { background: rgba(210, 153, 34, 0.15); color: var(--accent-yellow); }
.signal-card__icon--red { background: rgba(248, 81, 73, 0.15); color: var(--accent-red); }
.signal-card__icon--blue { background: rgba(88, 166, 255, 0.15); color: var(--accent-blue); }

/* ---------- Version Cards ---------- */
.version-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  border-radius: 10px; margin-bottom: 1rem;
}
.version-card__badge {
  flex-shrink: 0; font-family: var(--font-mono); font-size: 0.75rem;
  padding: 4px 10px; border-radius: 6px;
  background: var(--bg-tertiary); color: var(--accent-blue); font-weight: 600;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-primary); border-top: 1px solid var(--border-color);
  padding: 3rem 0 0; margin-top: var(--section-gap);
}
.footer__grid {
  max-width: var(--page-max); margin: 0 auto; padding: 0 var(--pad-mobile);
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
.footer__col h4 {
  font-family: var(--font-heading); font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-secondary); margin-bottom: 1rem;
}
.footer__col ul { list-style: none; padding: 0; }
.footer__col li { margin-bottom: 0.5rem; }
.footer__col a { color: var(--text-secondary); font-size: 0.875rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--accent-blue); }
.footer__bottom {
  margin-top: 2.5rem; border-top: 1px solid var(--border-color);
  padding: 1.5rem var(--pad-mobile); text-align: center;
  font-size: 0.75rem; color: var(--text-tertiary); line-height: 1.8;
}
.footer__bottom a { color: var(--text-secondary); }
.footer__badges {
  display: flex; gap: 1.5rem; justify-content: center;
  margin-bottom: 1rem; font-size: 0.8125rem;
  color: var(--text-secondary); font-weight: 600;
}

/* ---------- Article Styles ---------- */
.article-meta {
  font-size: 0.8125rem; color: var(--text-secondary);
  margin-bottom: 2rem; font-family: var(--font-mono);
}
.article-meta time { color: var(--accent-blue); }
article h2 { border-bottom: 1px solid var(--border-color); padding-bottom: 0.35em; }
article ul, article ol { margin-bottom: 1em; }
article li { margin-bottom: 0.35em; }

/* ---------- Responsive: Tablet 768px ---------- */
@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  .content-wrapper { padding: 0 var(--pad-tablet); }
  .nav__inner { padding: 0 var(--pad-tablet); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr 1fr; }
  .dashboard__rounds { grid-template-columns: repeat(10, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); padding: 0 var(--pad-tablet); }
  table { font-size: 0.875rem; }
  .blog-card__image { height: 200px; }
}

/* ---------- Responsive: Desktop 1024px ---------- */
@media (min-width: 1024px) {
  .content-wrapper { padding: 0 var(--pad-desktop); }
  .nav__inner { padding: 0 var(--pad-desktop); }
  .nav__hamburger { display: none; }
  .nav__links { display: flex; }
  .nav__cta { display: inline-block; }
  .mobile-sticky-cta { display: none; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: repeat(4, 1fr); padding: 0 var(--pad-desktop); }
  .dashboard__rounds { grid-template-columns: repeat(10, 1fr); }
  .step { padding-left: 5rem; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.accent-blue { color: var(--accent-blue); }
.accent-green { color: var(--accent-green); }
.accent-red { color: var(--accent-red); }
.accent-yellow { color: var(--accent-yellow); }
.accent-purple { color: var(--accent-purple); }

.share-buttons{display:flex;align-items:center;gap:8px;margin:24px 0;padding:16px;border-top:1px solid #e0e0e0}
.share-buttons span{font-size:13px;color:#666}
.share-btn{display:inline-flex;align-items:center;justify-content:center;padding:6px 14px;border-radius:4px;font-size:13px;text-decoration:none;color:#fff}
.share-x{background:#000}
.share-wa{background:#25D366}
.share-tg{background:#0088cc}
@media print {
  .nav, .mobile-sticky-cta, .cta-box, .cta-primary, .cta-secondary { display: none; }
  body { background: #fff; color: #111; }
  a { color: #111; text-decoration: underline; }
}


/* ---------- 1xBet Brand Elements ---------- */
.brand-badge {
  display: inline-block;
  background: #1B6CB0;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.xbet-mockup {
  background: #1A2332;
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.xbet-mockup::before {
  content: '1xBet';
  position: absolute;
  top: 12px;
  left: 16px;
  font-weight: 700;
  color: #1B6CB0;
  font-size: 18px;
}
.visual-placeholder {
  background: linear-gradient(135deg, var(--accent-blue, #1B6CB0) 0%, var(--bg-primary, #1A2332) 100%);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.hero-dashboard-mockup {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  margin: 2.5rem auto 0;
  max-width: 600px;
  position: relative;
  overflow: hidden;
}
.hero-dashboard-mockup::before {
  content: '1xBet Tower Rush';
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1B6CB0;
  font-size: 16px;
}
.hero-dashboard-mockup .mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-top: 24px;
}
.hero-dashboard-mockup .mockup-multiplier {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-green);
  text-align: center;
  padding: 16px 0;
  text-shadow: 0 0 30px rgba(63,185,80,0.3);
}
.hero-dashboard-mockup .mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  justify-content: center;
  margin-bottom: 12px;
}
.hero-dashboard-mockup .mockup-bar {
  width: 18px;
  border-radius: 3px 3px 0 0;
  transition: height 0.3s;
}
.hero-dashboard-mockup .mockup-status {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
}
.css-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 120px;
  padding: 20px 0;
  justify-content: center;
}
.css-bar-chart .bar {
  width: 40px;
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.3s;
}
.css-bar-chart .bar-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.625rem;
  color: var(--text-secondary);
  white-space: nowrap;
  font-family: var(--font-mono);
}
.css-bar-chart .bar-value {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-family: var(--font-mono);
  font-weight: 600;
  white-space: nowrap;
}
.app-mockup-visual {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 16px;
  max-width: 280px;
  margin: 0 auto;
  position: relative;
}
.app-mockup-visual .app-screen {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 20px 16px;
  min-height: 400px;
}
.app-mockup-visual .app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}
.app-mockup-visual .app-header span:first-child {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1B6CB0;
  font-size: 14px;
}
.app-mockup-visual .app-signal {
  background: var(--bg-tertiary);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}
.infographic-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 24px 0;
}
.infographic-step {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}
.infographic-step .step-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.infographic-step .step-num {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: var(--bg-primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 28px;
  margin-bottom: 8px;
}
.infographic-step h4 {
  font-size: 0.875rem;
  margin-bottom: 4px;
}
.infographic-step p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0;
}

/* 1xBet Logo in Navigation */
.nav-logo img, .nav__logo img, .site-logo img, .logo img {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 6px;
}

/* Author Byline */
.author-byline { display:flex; align-items:center; gap:12px; margin:16px 0 24px; padding:12px 16px; background:rgba(0,0,0,0.03); border-radius:8px; }
.author-avatar { width:40px; height:40px; border-radius:50%; object-fit:cover; }
.author-info { display:flex; flex-direction:column; }
.author-name { font-weight:600; font-size:14px; display:flex; align-items:center; gap:4px; }
.author-role { font-size:12px; color:#666; }
.verified-badge { flex-shrink:0; }

/* Author Box */
.author-box { display:flex; gap:20px; padding:24px; margin:40px 0 20px; border:1px solid #e0e0e0; border-radius:12px; background:#fafafa; }
.author-box-photo { width:80px; height:80px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.author-box-content { flex:1; }
.author-box-name { font-size:18px; margin:0 0 8px; display:flex; align-items:center; gap:6px; }
.author-box-bio { font-size:14px; color:#444; margin:0 0 12px; line-height:1.5; }
.author-box-links { display:flex; gap:16px; font-size:13px; }
.author-link { color:inherit; text-decoration:underline; }
.author-twitter { color:#1DA1F2; text-decoration:none; }
.reviewer-line { font-size:13px; color:#666; margin:8px 0 32px; padding-left:24px; border-left:3px solid #e0e0e0; }

@media (max-width:600px) {
  .author-box { flex-direction:column; align-items:center; text-align:center; }
  .author-box-links { justify-content:center; }
}

.blog-pagination{display:flex;justify-content:center;gap:12px;margin:32px 0;padding:16px}
.blog-pagination a,.page-current{padding:8px 16px;border-radius:4px;font-size:14px;text-decoration:none}
.page-current{background:#eee;font-weight:600}

/* 1xBet logo sizing fix */
img[alt="1xBet"]{max-width:110px;height:auto}
footer img[alt="1xBet"]{max-width:82px}
.site-footer img[alt="1xBet"]{max-width:82px}
.footer img[alt="1xBet"]{max-width:82px}
.footer__bottom img[alt="1xBet"]{max-width:82px}

.affiliate-disclosure{font-size:12px;color:#888;margin:4px 0 16px;font-style:italic}

.data-note{font-size:13px;color:#888;border-left:3px solid #ddd;padding-left:12px;margin:8px 0 16px}

/* Fix overflow on share buttons and author box */
.share-buttons, .author-box, .reviewer-line { max-width: 100%; overflow: hidden; box-sizing: border-box; }
main, article, .content, .content-area, .page-content, .page-wrapper { overflow-x: hidden; }

.reviewer-links { display:flex; gap:12px; margin-top:8px; font-size:13px; }
.reviewer-links a { color:#1B6CB0; text-decoration:underline; }
