@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Orbitron:wght@700;900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-bg: #0d1117;
  --c-bg2: #131a24;
  --c-bg3: #1a2333;
  --c-green: #3ddc5a;
  --c-green-d: #28a845;
  --c-gold: #f0b429;
  --c-gold-d: #c9900f;
  --c-purple: #6c3fc5;
  --c-text: #e2e8f0;
  --c-muted: #8899aa;
  --c-border: #1e2d3d;
  --c-card: #162032;
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.22s ease;
  --font-head: "Orbitron", sans-serif;
  --font-sub: "Rajdhani", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --shadow-glow: 0 0 24px rgba(61, 220, 90, 0.25);
  --shadow-gold: 0 0 24px rgba(240, 180, 41, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--c-green);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-gold);
}

img {
  max-width: 100%;
  display: block;
}

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--c-bg2);
}
::-webkit-scrollbar-thumb {
  background: var(--c-gold);
  border-radius: 3px;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-sub);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
h3 {
  font-size: 1.25rem;
}
p {
  margin-bottom: 1rem;
  color: var(--c-text);
}
strong {
  color: var(--c-green);
  font-weight: 600;
}

/* ── UTILITY ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.q3m_sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.q3m_text-green {
  color: var(--c-green);
}
.q3m_text-gold {
  color: var(--c-gold);
}
.q3m_text-muted {
  color: var(--c-muted);
  font-size: 0.875rem;
}
.q3m_section {
  padding: 60px 0;
}
.q3m_section-sm {
  padding: 36px 0;
}
.q3m_divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 40px 0;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.q3m_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}
.q3m_btn-primary {
  background: var(--c-green);
  color: #0d1117;
  box-shadow: 0 4px 18px rgba(61, 220, 90, 0.35);
}
.q3m_btn-primary:hover {
  background: #52e870;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  color: #0d1117;
}
.q3m_btn-gold {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-d));
  color: #0d1117;
  box-shadow: 0 4px 18px rgba(240, 180, 41, 0.35);
}
.q3m_btn-gold:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: #0d1117;
}
.q3m_btn-outline {
  background: transparent;
  border: 2px solid var(--c-green);
  color: var(--c-green);
}
.q3m_btn-outline:hover {
  background: var(--c-green);
  color: #0d1117;
}
.q3m_btn-lg {
  padding: 16px 40px;
  font-size: 1.15rem;
  border-radius: 10px;
}
.q3m_btn-full {
  width: 100%;
}

/* ── NAV / HEADER ──────────────────────────────────────────── */
.q3m_nav {
  background: rgba(13, 17, 23, 0.97);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.q3m_nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.q3m_logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.5px;
}
.q3m_logo em {
  font-style: normal;
  color: var(--c-gold);
}
.q3m_logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--c-green), var(--c-gold));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #0d1117;
  font-weight: 900;
  font-family: var(--font-head);
}
.q3m_nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.q3m_nav-links a {
  color: var(--c-muted);
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.q3m_nav-links a:hover,
.q3m_nav-links a.active {
  color: #fff;
  background: var(--c-bg3);
}
.q3m_nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.q3m_hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
}

/* ── TICKER ────────────────────────────────────────────────── */
.q3m_ticker {
  background: var(--c-bg3);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
  overflow: hidden;
}
.q3m_ticker-inner {
  display: flex;
  gap: 60px;
  animation: q3m-scroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes q3m-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.q3m_ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--c-muted);
  font-family: var(--font-sub);
}
.q3m_ticker-item strong {
  color: var(--c-gold);
}
.q3m_ticker-item span {
  color: var(--c-green);
}

/* ── HERO ──────────────────────────────────────────────────── */
.q3m_hero {
  background: linear-gradient(135deg, #08100d 0%, #0d1a14 40%, #0f1520 100%);
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
}
.q3m_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 20% 50%,
      rgba(61, 220, 90, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 70% at 85% 20%,
      rgba(240, 180, 41, 0.07) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.q3m_hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.q3m_hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 180, 41, 0.12);
  border: 1px solid rgba(240, 180, 41, 0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-family: var(--font-sub);
  font-weight: 700;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  width: fit-content;
}
.q3m_hero-badge::before {
  content: "●";
  font-size: 0.45rem;
  animation: q3m-pulse 1.5s infinite;
}
@keyframes q3m-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.q3m_hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.q3m_hero h1 em {
  font-style: normal;
  color: var(--c-gold);
}
.q3m_hero-sub {
  font-size: 1.05rem;
  color: var(--c-muted);
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.7;
}
.q3m_hero-meta {
  font-size: 0.78rem;
  color: var(--c-muted);
  margin-top: 12px;
  margin-bottom: 0;
}

/* ── RATING STRIP ──────────────────────────────────────────── */
.q3m_rating-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.q3m_rating-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.q3m_rating-chip strong {
  font-family: var(--font-sub);
  font-size: 1.4rem;
  color: var(--c-gold);
  font-weight: 700;
}
.q3m_rating-chip span {
  font-size: 0.75rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── CODE REVEAL WIDGET ────────────────────────────────────── */
.q3m_code-widget {
  background: var(--c-card);
  border: 1px solid rgba(240, 180, 41, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.q3m_code-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-green));
}
.q3m_code-widget h3 {
  font-family: var(--font-sub);
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
  margin-bottom: 6px;
}
.q3m_code-widget-sub {
  text-align: center;
  font-size: 0.82rem;
  color: var(--c-muted);
  margin-bottom: 22px;
}
.q3m_code-reveal {
  display: flex;
  align-items: center;
  background: var(--c-bg3);
  border: 2px dashed rgba(240, 180, 41, 0.4);
  border-radius: 10px;
  padding: 16px 18px;
  gap: 12px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all var(--transition);
}
.q3m_code-reveal:hover {
  border-color: var(--c-gold);
  background: rgba(240, 180, 41, 0.06);
}
.q3m_code-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-gold);
  letter-spacing: 2px;
  flex: 1;
  text-align: center;
}
.q3m_code-copy-btn {
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.3);
  border-radius: 6px;
  padding: 6px 14px;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-gold);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.q3m_code-copy-btn:hover {
  background: var(--c-gold);
  color: #0d1117;
}
.q3m_code-bonus-line {
  text-align: center;
  font-family: var(--font-sub);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}
.q3m_code-bonus-line span {
  color: var(--c-green);
}
.q3m_code-steps {
  display: flex;
  justify-content: space-around;
  margin: 18px 0 20px;
  gap: 6px;
}
.q3m_code-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: var(--c-muted);
  text-align: center;
}
.q3m_code-step-icon {
  width: 38px;
  height: 38px;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.q3m_code-step-arrow {
  color: var(--c-border);
  font-size: 1rem;
  padding-bottom: 18px;
}
.q3m_code-note {
  font-size: 0.7rem;
  color: var(--c-muted);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 8px;
}

/* ── TRUST BAR ─────────────────────────────────────────────── */
.q3m_trust-bar {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 18px 0;
}
.q3m_trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.q3m_trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-muted);
}
.q3m_trust-item-icon {
  font-size: 1.3rem;
  color: var(--c-gold);
}
.q3m_trust-item strong {
  color: #fff;
}

/* ── SECTION TITLES ────────────────────────────────────────── */
.q3m_section-title {
  margin-bottom: 36px;
}
.q3m_section-title h2 {
  margin-bottom: 8px;
}
.q3m_section-title p {
  color: var(--c-muted);
  max-width: 600px;
  font-size: 0.95rem;
}
.q3m_tag {
  display: inline-block;
  background: rgba(240, 180, 41, 0.1);
  color: var(--c-gold);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(240, 180, 41, 0.2);
}

/* ── CODE CARDS ────────────────────────────────────────────── */
.q3m_codes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.q3m_code-card {
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-green));
  transition: transform var(--transition);
}
.q3m_code-card:hover {
  transform: translateY(-4px);
}
.q3m_code-card-inner {
  background: var(--c-card);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 28px 24px;
  height: 100%;
}
.q3m_code-label {
  display: inline-block;
  background: rgba(240, 180, 41, 0.12);
  color: var(--c-gold);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(240, 180, 41, 0.25);
}
.q3m_code-amount {
  font-family: var(--font-sub);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--c-green);
  line-height: 1;
  margin-bottom: 4px;
}
.q3m_code-spins {
  font-size: 1rem;
  color: var(--c-gold);
  font-family: var(--font-sub);
  font-weight: 600;
  margin-bottom: 14px;
}
.q3m_code-details {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.q3m_code-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--c-muted);
}
.q3m_code-details li::before {
  content: "✓";
  color: var(--c-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.q3m_code-box {
  display: flex;
  align-items: center;
  background: var(--c-bg3);
  border: 2px dashed rgba(240, 180, 41, 0.35);
  border-radius: 8px;
  padding: 12px 16px;
  gap: 10px;
  margin-bottom: 16px;
}
.q3m_code-box-val {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--c-gold);
  letter-spacing: 2px;
  flex: 1;
}
.q3m_code-copy {
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.3);
  border-radius: 6px;
  padding: 5px 12px;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-gold);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.q3m_code-copy:hover {
  background: var(--c-gold);
  color: #0d1117;
}

/* ── FULL WELCOME PACKAGE ──────────────────────────────────── */
.q3m_package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.q3m_pkg-card {
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.q3m_pkg-card.dep1 {
  background: linear-gradient(135deg, #1a2d1a, #0f2010);
  border: 1px solid rgba(61, 220, 90, 0.3);
}
.q3m_pkg-card.dep2 {
  background: linear-gradient(135deg, #1e1a2d, #140f1e);
  border: 1px solid rgba(108, 63, 197, 0.3);
}
.q3m_pkg-card.dep3 {
  background: linear-gradient(135deg, #2d251a, #1e180f);
  border: 1px solid rgba(240, 180, 41, 0.3);
}
.q3m_pkg-num {
  position: absolute;
  top: -10px;
  right: 14px;
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 900;
  opacity: 0.07;
  color: #fff;
  line-height: 1;
}
.q3m_pkg-label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-muted);
}
.q3m_pkg-amount {
  font-family: var(--font-sub);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.q3m_pkg-amount span {
  color: var(--c-green);
}
.q3m_pkg-detail {
  font-size: 0.82rem;
  color: var(--c-muted);
  line-height: 1.5;
}
.q3m_pkg-total {
  background: linear-gradient(
    135deg,
    rgba(61, 220, 90, 0.06),
    rgba(240, 180, 41, 0.06)
  );
  border: 1px solid rgba(61, 220, 90, 0.2);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.q3m_pkg-total-label {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.q3m_pkg-total-val {
  font-family: var(--font-sub);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-gold);
}

/* ── TABLE ─────────────────────────────────────────────────── */
.q3m_table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}
.q3m_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.q3m_table thead {
  background: var(--c-bg3);
}
.q3m_table th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-border);
}
.q3m_table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(30, 45, 61, 0.5);
  color: var(--c-text);
}
.q3m_table tr:last-child td {
  border-bottom: none;
}
.q3m_table tr:hover td {
  background: rgba(26, 35, 51, 0.6);
}
.q3m_badge-yes {
  background: rgba(61, 220, 90, 0.12);
  color: var(--c-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(61, 220, 90, 0.2);
  white-space: nowrap;
}
.q3m_badge-check {
  background: rgba(240, 180, 41, 0.12);
  color: var(--c-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(240, 180, 41, 0.2);
  white-space: nowrap;
}

/* ── WAGERING SECTION ──────────────────────────────────────── */
.q3m_wager-section {
  background: var(--c-bg2);
}
.q3m_wager-box {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
}
.q3m_wager-box h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
}
.q3m_wager-box p {
  color: var(--c-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 22px;
}
.q3m_wager-calc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.q3m_wc-item {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.q3m_wc-dep {
  font-size: 0.8rem;
  color: var(--c-muted);
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.q3m_wc-bonus {
  font-size: 0.9rem;
  color: var(--c-text);
}
.q3m_wc-wager {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-gold);
}

/* ── HIGHLIGHT / WARN BOXES ────────────────────────────────── */
.q3m_highlight-box {
  background: linear-gradient(
    135deg,
    rgba(61, 220, 90, 0.06),
    rgba(240, 180, 41, 0.04)
  );
  border: 1px solid rgba(61, 220, 90, 0.2);
  border-left: 3px solid var(--c-green);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 24px 0;
}
.q3m_highlight-box p {
  margin: 0;
  color: var(--c-text);
  font-size: 0.95rem;
}
.q3m_warn-box {
  background: rgba(240, 180, 41, 0.06);
  border: 1px solid rgba(240, 180, 41, 0.25);
  border-left: 3px solid var(--c-gold);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 24px 0;
}
.q3m_warn-box p {
  margin: 0;
  color: var(--c-text);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── BREADCRUMB ────────────────────────────────────────────── */
.q3m_breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-muted);
  margin-bottom: 20px;
}
.q3m_breadcrumb .sep {
  color: var(--c-border);
}
.q3m_breadcrumb a {
  color: var(--c-muted);
}
.q3m_breadcrumb a:hover {
  color: var(--c-gold);
}

/* ── CONTENT LAYOUT ────────────────────────────────────────── */
.q3m_content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.q3m_content-body h2 {
  font-size: 1.45rem;
  margin: 36px 0 14px;
  padding-top: 8px;
  position: relative;
  padding-left: 16px;
}
.q3m_content-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--c-gold);
  border-radius: 2px;
}
.q3m_content-body p {
  margin-bottom: 1.1rem;
  color: #c8d6e5;
  line-height: 1.75;
}
.q3m_content-body ul {
  margin: 16px 0 20px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.q3m_content-body ul li {
  padding-left: 24px;
  position: relative;
  color: #c8d6e5;
  font-size: 0.95rem;
}
.q3m_content-body ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--c-gold);
}

/* ── SIDEBAR ───────────────────────────────────────────────── */
.q3m_sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.q3m_sidebar-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.q3m_sidebar-card h4 {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border);
}
.q3m_quick-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.q3m_quick-facts li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  gap: 10px;
}
.q3m_quick-facts li span:first-child {
  color: var(--c-muted);
}
.q3m_quick-facts li span:last-child {
  color: #fff;
  font-weight: 500;
  text-align: right;
}
.q3m_sidebar-cta {
  background: linear-gradient(
    135deg,
    rgba(240, 180, 41, 0.1),
    rgba(61, 220, 90, 0.08)
  );
  border: 1px solid rgba(240, 180, 41, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}
.q3m_sidebar-cta h4 {
  color: #fff;
  font-size: 1.05rem;
  border: none;
  padding: 0;
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 0;
}
.q3m_sidebar-cta p {
  font-size: 0.83rem;
  color: var(--c-muted);
  margin-bottom: 14px;
}
.q3m_bonus-amt-sm {
  font-family: var(--font-sub);
  font-size: 1.5rem;
  color: var(--c-gold);
  display: block;
  margin-bottom: 4px;
}

/* ── TIPS ──────────────────────────────────────────────────── */
.q3m_tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.q3m_tip-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.q3m_tip-card:hover {
  border-color: rgba(240, 180, 41, 0.35);
}
.q3m_tip-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.q3m_tip-title {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.q3m_tip-desc {
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.55;
}

/* ── AUTHOR BOX ────────────────────────────────────────────── */
.q3m_author-box {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.q3m_author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-green), var(--c-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: var(--font-head);
  font-weight: 900;
  color: #0d1117;
  flex-shrink: 0;
}
.q3m_author-name {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.q3m_author-title {
  font-size: 0.8rem;
  color: var(--c-gold);
  font-family: var(--font-sub);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.q3m_author-bio {
  font-size: 0.86rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.q3m_faq {
  background: var(--c-bg2);
}
.q3m_faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
}
.q3m_faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.q3m_faq-item:hover {
  border-color: rgba(240, 180, 41, 0.3);
}
.q3m_faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.q3m_faq-q:hover {
  color: var(--c-gold);
}
.q3m_faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--c-bg3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--c-gold);
  transition: transform var(--transition);
}
.q3m_faq-item.open .q3m_faq-icon {
  transform: rotate(45deg);
}
.q3m_faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 20px;
  color: var(--c-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.q3m_faq-item.open .q3m_faq-a {
  max-height: 300px;
  padding: 0 20px 18px;
}

/* ── CTA BANNER ────────────────────────────────────────────── */
.q3m_cta-banner {
  background: linear-gradient(135deg, #12100a 0%, #1a1508 50%, #0e1208 100%);
  border-top: 1px solid rgba(240, 180, 41, 0.2);
  border-bottom: 1px solid rgba(240, 180, 41, 0.2);
  position: relative;
  overflow: hidden;
}
.q3m_cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(240, 180, 41, 0.06) 0%,
    transparent 70%
  );
}
.q3m_cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 0;
  flex-wrap: wrap;
}
.q3m_cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 10px;
}
.q3m_cta-text p {
  color: var(--c-muted);
  max-width: 500px;
  margin: 0;
}
.q3m_cta-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: #080d13;
  border-top: 1px solid var(--c-border);
  padding: 50px 0 24px;
}
.q3m_footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.q3m_footer-brand p {
  color: var(--c-muted);
  font-size: 0.875rem;
  margin-top: 14px;
  line-height: 1.6;
}
.q3m_footer-col h5 {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-muted);
  margin-bottom: 16px;
}
.q3m_footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.q3m_footer-col ul li a {
  color: var(--c-muted);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.q3m_footer-col ul li a:hover {
  color: var(--c-gold);
}
.q3m_footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.q3m_footer-bottom p {
  font-size: 0.8rem;
  color: var(--c-muted);
  margin: 0;
}
.q3m_rg-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.q3m_rg-badge {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-sub);
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.q3m_disclaimer {
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.78rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin-top: 24px;
}

/* ── STICKY MOBILE BAR ─────────────────────────────────────── */
.q3m_sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 17, 23, 0.97);
  border-top: 2px solid var(--c-gold);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  backdrop-filter: blur(8px);
  gap: 12px;
}
.q3m_sticky-bar-text {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}
.q3m_sticky-bar-text span {
  color: var(--c-gold);
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes q3m-fadeup {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.q3m_fadeup {
  animation: q3m-fadeup 0.5s ease both;
}
.q3m_delay-1 {
  animation-delay: 0.1s;
}
.q3m_delay-2 {
  animation-delay: 0.2s;
}
.q3m_delay-3 {
  animation-delay: 0.3s;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .q3m_hero-grid {
    grid-template-columns: 1fr;
  }
  .q3m_code-widget {
    max-width: 480px;
    margin: 0 auto;
  }
  .q3m_content-layout {
    grid-template-columns: 1fr;
  }
  .q3m_sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .q3m_package-grid {
    grid-template-columns: 1fr;
  }
  .q3m_footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .q3m_btn {
    padding: 8px;
    font-size: 10px;
  }

  .q3m_nav-links {
    display: none;
  }
  .q3m_hamburger {
    display: block;
  }
  .q3m_trust-items {
    justify-content: flex-start;
  }
  .q3m_codes-grid {
    grid-template-columns: 1fr;
  }
  .q3m_package-grid {
    grid-template-columns: 1fr;
  }
  .q3m_wager-calc {
    grid-template-columns: 1fr 1fr;
  }
  .q3m_footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .q3m_cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .q3m_cta-buttons {
    justify-content: center;
  }
  .q3m_sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 68px;
  }
  .q3m_footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .q3m_author-box {
    flex-direction: column;
  }
  .q3m_tips-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .q3m_wager-calc {
    grid-template-columns: 1fr;
  }
  .q3m_rating-strip {
    gap: 16px;
  }
}
