/* ==========================================
   GLITCHSPIN CASINO — SHARED STYLESHEET
   Brand: #0a0a18 BG · #3bff6e Green · #fff
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a18;
  color: #e8e8f0;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---------- CSS VARIABLES ---------- */
:root {
  --bg: #0a0a18;
  --bg2: #0f0f22;
  --bg3: #151530;
  --card: #181833;
  --card2: #1f1f45;
  --green: #3bff6e;
  --green-d: #28cc55;
  --green-glow: rgba(59, 255, 110, 0.18);
  --green-glow2: rgba(59, 255, 110, 0.07);
  --white: #ffffff;
  --text: #e8e8f0;
  --muted: #8888aa;
  --dim: #4a4a6a;
  --border: #252545;
  --border2: #1a1a38;
  --gold: #ffd700;
  --red: #ff4757;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-g: 0 0 20px rgba(59, 255, 110, 0.3);
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  color: var(--text);
  margin-bottom: 1rem;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: #fff;
}

strong {
  color: var(--white);
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-lg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-bg {
  background: var(--bg2);
}

.section-bg2 {
  background: var(--bg3);
}

/* ---------- ANIMATIONS ---------- */
@keyframes glitchText {

  0%,
  88%,
  100% {
    transform: translate(0);
    clip-path: none;
  }

  90% {
    transform: translate(-3px, 1px);
    clip-path: inset(15% 0 55% 0);
  }

  92% {
    transform: translate(3px, -1px);
    clip-path: inset(60% 0 10% 0);
  }

  94% {
    transform: translate(0);
    clip-path: none;
  }
}

@keyframes pulseGreen {

  0%,
  100% {
    box-shadow: 0 0 12px rgba(59, 255, 110, .3);
  }

  50% {
    box-shadow: 0 0 28px rgba(59, 255, 110, .6), 0 0 48px rgba(59, 255, 110, .15);
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes scanLine {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100vh);
  }
}

.glitch-text {
  animation: glitchText 7s infinite;
}

.pulse-green {
  animation: pulseGreen 2.2s ease-in-out infinite;
}

.float-anim {
  animation: floatY 3.5s ease-in-out infinite;
}

.fade-up {
  animation: fadeUp .6s ease both;
}

/* ---------- SITE HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 24, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.15;
}

.logo-text .t1 {
  display: block;
  color: #fff;
  letter-spacing: 2px;
}

.logo-text .t2 {
  display: block;
  color: var(--green);
  letter-spacing: 2px;
}

/* Desktop nav */
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: .88rem;
  padding: 8px 11px;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--green);
  background: var(--green-glow2);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Tracker CTA button */
.btn-tracker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  padding: 9px 18px;
  border-radius: 8px;
  white-space: nowrap;
  animation: pulseGreen 2.2s ease-in-out infinite;
  transition: background .2s, transform .15s;
}

.btn-tracker:hover {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 16px 20px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu nav a {
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all .2s;
}

.mobile-menu nav a:hover {
  color: var(--green);
  background: var(--green-glow2);
}

.mobile-cta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-cta .btn-tracker {
  justify-content: center;
  padding: 12px;
  font-size: 1rem;
  border-radius: 10px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .2s;
  border: none;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 18px rgba(59, 255, 110, .3);
}

.btn-primary:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 28px rgba(59, 255, 110, .5);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: #000;
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--card2);
  color: var(--white);
  border-color: var(--green);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.15rem;
  border-radius: 10px;
}

.btn-sm {
  padding: 7px 14px;
  font-size: .82rem;
}

.btn-block {
  width: 100%;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 24, .92) 45%, rgba(10, 10, 24, .6) 100%);
  z-index: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 255, 110, .12);
  border: 1px solid rgba(59, 255, 110, .35);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

.hero-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 10px;
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 22px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .6px;
}

/* ---------- SECTION TITLES ---------- */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: .95rem;
}

.section-title .line {
  display: inline-block;
  width: 56px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 12px auto 16px;
}

/* ---------- CARDS / GRID ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .22s;
}

.card:hover {
  border-color: var(--green);
  box-shadow: 0 0 22px var(--green-glow);
  transform: translateY(-3px);
}

.card-body {
  padding: 22px;
}

.card-foot {
  padding: 14px 22px;
  border-top: 1px solid var(--border2);
}

.grid {
  display: grid;
  gap: 24px;
}

.g-2 {
  grid-template-columns: repeat(2, 1fr);
}

.g-3 {
  grid-template-columns: repeat(3, 1fr);
}

.g-4 {
  grid-template-columns: repeat(4, 1fr);
}

.g-auto {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* Game card */
.game-card {
  position: relative;
}

.game-card .game-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}

.game-card .game-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: rgba(10, 10, 24, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .22s;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.badge-green {
  background: rgba(59, 255, 110, .14);
  color: var(--green);
}

.badge-gold {
  background: rgba(255, 215, 0, .14);
  color: var(--gold);
}

.badge-red {
  background: rgba(255, 71, 87, .14);
  color: var(--red);
}

.badge-blue {
  background: rgba(100, 150, 255, .14);
  color: #6496ff;
}

.badge-grey {
  background: rgba(136, 136, 170, .14);
  color: var(--muted);
}

/* Ribbon */
.ribbon {
  position: absolute;
  top: 12px;
  right: -6px;
  background: var(--green);
  color: #000;
  font-size: .68rem;
  font-weight: 800;
  padding: 4px 14px;
  letter-spacing: .4px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
}

.ribbon-gold {
  background: var(--gold);
}

/* ---------- TABLES ---------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 520px;
}

thead {
  background: var(--card2);
}

thead th {
  padding: 13px 16px;
  text-align: left;
  font-family: 'Rajdhani', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--green);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid var(--border2);
  transition: background .15s;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover {
  background: var(--card2);
}

tbody td {
  padding: 13px 16px;
  color: var(--text);
  font-size: .92rem;
}

/* ---------- CHARTS ---------- */
.chart-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.chart-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.chart-box {
  position: relative;
}

/* ---------- PROGRESS BARS ---------- */
.progress-wrap {
  margin-bottom: 14px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: .83rem;
  color: var(--text);
}

.progress-track {
  height: 8px;
  background: var(--border2);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green-d), var(--green));
  border-radius: 4px;
  transition: width 1.2s ease;
}

.progress-fill-gold {
  background: linear-gradient(90deg, #cc9900, var(--gold));
}

/* ---------- RATING ---------- */
.rating {
  display: flex;
  gap: 3px;
  align-items: center;
}

.star {
  color: var(--gold);
  font-size: .82rem;
}

.rating-num {
  color: var(--muted);
  font-size: .78rem;
  margin-left: 5px;
}

/* ---------- ICON BOXES ---------- */
.icon-box {
  text-align: center;
  padding: 28px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .22s;
}

.icon-box:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.icon-box .icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.icon-box h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.icon-box p {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 17px 20px;
  background: var(--card);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  transition: background .2s;
}

.faq-question:hover {
  background: var(--card2);
}

.faq-question .arrow {
  font-size: 1.1rem;
  color: var(--green);
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-question.open .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 16px 20px;
  background: var(--bg2);
  color: var(--text);
  border-top: 1px solid var(--border);
  font-size: .92rem;
}

.faq-answer.open {
  display: block;
}

/* ---------- AUTHOR CARD ---------- */
.author-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.author-avatar {
  flex-shrink: 0;
  width: 110px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--green);
}

.author-avatar img,
.author-avatar svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--green);
  margin-bottom: 3px;
  font-size: 1.2rem;
}

.author-meta {
  color: var(--muted);
  font-size: .82rem;
  margin-bottom: 10px;
}

.author-socials {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.author-socials a {
  width: 34px;
  height: 34px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: var(--muted);
  transition: all .2s;
}

.author-socials a:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: .82rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--green);
}

.breadcrumb .sep {
  color: var(--dim);
}

/* ---------- FORM STYLES ---------- */
.form-wrap {
  max-width: 440px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-title {
  text-align: center;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: var(--text);
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 7px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-size: .93rem;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(59, 255, 110, .12);
}

.form-group input::placeholder {
  color: var(--dim);
}

.form-group select option {
  background: var(--bg2);
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form-check input[type=checkbox] {
  margin-top: 3px;
  accent-color: var(--green);
}

.form-check label {
  font-size: .83rem;
  color: var(--muted);
}

.form-divider {
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
  margin: 18px 0;
  position: relative;
}

.form-divider::before,
.form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 22px);
  height: 1px;
  background: var(--border);
}

.form-divider::before {
  left: 0;
}

.form-divider::after {
  right: 0;
}

/* ---------- SEO TEXT BLOCK ---------- */
.seo-text {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 48px;
  margin-top: 48px;
  border: 1px solid var(--border2);
}

.seo-text h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}

.seo-text h3 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
  color: var(--green);
}

.seo-text p {
  font-size: .94rem;
  line-height: 1.85;
}

.seo-text ul {
  margin: 10px 0 16px 22px;
}

.seo-text ul li {
  color: var(--text);
  font-size: .94rem;
  margin-bottom: 6px;
  line-height: 1.7;
}

.seo-text a {
  color: var(--green);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.seo-text a:hover {
  color: #fff;
  border-bottom-color: var(--green);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {}

.footer-brand p {
  color: var(--muted);
  font-size: .88rem;
  margin: 14px 0 20px;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 9px;
}

.footer-col li a {
  color: var(--muted);
  font-size: .88rem;
  transition: color .2s;
}

.footer-col li a:hover {
  color: var(--green);
}

.footer-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pay-badge {
  height: 26px;
  padding: 3px 10px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: .7rem;
  color: var(--muted);
  font-weight: 700;
  display: flex;
  align-items: center;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  color: var(--dim);
  font-size: .78rem;
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.age-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: .8rem;
  flex-shrink: 0;
}

.resp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--card2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
}

/* ---------- SEPARATOR ---------- */
.sep {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.sep-sm {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

/* ---------- UTILITY ---------- */
.text-green {
  color: var(--green) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.text-red {
  color: var(--red) !important;
}

.text-muted {
  color: var(--muted) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.fw-700 {
  font-weight: 700;
}

.d-flex {
  display: flex;
}

.align-c {
  align-items: center;
}

.justify-sb {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-32 {
  margin-top: 32px;
}

.relative {
  position: relative;
}

.overflow-h {
  overflow: hidden;
}

.w-100 {
  width: 100%;
}

.rounded {
  border-radius: var(--radius);
}

/* ---------- FORM SOCIAL BTN ---------- */
.form-social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg2);
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 10px;
  font-size: .88rem;
  text-decoration: none;
}

.form-social-btn:hover {
  border-color: var(--green);
  color: var(--white);
}

/* ---------- EXTRA UTILITIES ---------- */
.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.align-start {
  align-items: flex-start;
}

.flex-col {
  flex-direction: column;
}

.cursor-pointer {
  cursor: pointer;
}

.inline-flex {
  display: inline-flex;
}

/* ========================================
   SKIP LINK (Accessibility)
   ======================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--green);
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  z-index: 9999;
  transition: top .2s;
  text-decoration: none;
}

.skip-link:focus {
  top: 10px;
}

/* ========================================
   FOCUS VISIBLE (Accessibility)
   ======================================== */
*:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  z-index: 9998;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  flex: 1 1 280px;
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
}

.cookie-banner p a {
  color: var(--green);
}

.cookie-banner-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  background: var(--green);
  color: #000;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: opacity .2s;
}

.cookie-btn-accept:hover {
  opacity: .85;
}

.cookie-btn-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: .88rem;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.cookie-btn-decline:hover {
  border-color: var(--muted);
  color: var(--text);
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {

  .site-header,
  .mobile-menu,
  .hamburger,
  .btn-tracker,
  .stats-strip,
  .cookie-banner,
  .skip-link {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #444;
  }

  main,
  .container {
    max-width: 100%;
  }

  h1,
  h2,
  h3 {
    color: #000;
    break-after: avoid;
  }

  .card,
  .info-card,
  .bonus-card {
    border: 1px solid #ccc;
    box-shadow: none;
  }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 7px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg2);
}

::-webkit-scrollbar-thumb {
  background: var(--card2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-d);
}

/* ---------- SELECTION ---------- */
::selection {
  background: rgba(59, 255, 110, .22);
  color: var(--white);
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

@media (max-width:1024px) {
  .g-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width:768px) {
  .section {
    padding: 48px 0;
  }

  .seo-text {
    padding: 28px 18px;
  }

  nav.main-nav {
    display: none;
  }

  .header-cta .btn-outline {
    display: none;
  }

  .header-cta .btn-ghost {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .g-2,
  .g-3,
  .g-4 {
    grid-template-columns: 1fr;
  }

  .g-auto {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .author-card {
    flex-direction: column;
    gap: 20px;
  }

  .hero {
    min-height: 360px;
  }

  table {
    min-width: 520px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-inner {
    gap: 28px;
  }

  /* Charts: prevent horizontal overflow on mobile */
  .chart-box {
    overflow: hidden;
  }

  .chart-box canvas {
    max-width: 100% !important;
  }
}

@media (max-width:480px) {
  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  .container {
    padding: 0 14px;
  }

  .form-wrap {
    padding: 24px 16px;
  }

  .btn-lg {
    padding: 13px 24px;
    font-size: 1rem;
  }

  .hero-content {
    padding: 40px 0;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .seo-text {
    padding: 22px 14px;
  }
}

/* ---------- BONUS GRID (homepage) ---------- */
.bonus-grid {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ---------- LIVE GAME GRID ---------- */
.live-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .live-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* ---------- VIP / PAY ICONS GRID ---------- */
.pay-icons-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .pay-icons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .pay-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}