/* ============================================================
   PIN-UP CASINO AZERBAIJAN — GLOBAL STYLES
   Brand: Black #0d0d0d | Red #ff0033 | Green #1fbd5a
   Font: Playfair Display (headings) + Inter (body)
   ============================================================ */

:root {
  --black: #0d0d0d;
  --black2: #111111;
  --black3: #1a1a1a;
  --red: #ff0033;
  --red2: #cc0028;
  --green: #1fbd5a;
  --green2: #18a04c;
  --gold: #f5c518;
  --white: #ffffff;
  --text: #e8e8e8;
  --text-muted: #999;
  --border: #2a2a2a;
  --gradient-red: linear-gradient(135deg, #ff0033 0%, #cc0028 100%);
  --gradient-green: linear-gradient(135deg, #1fbd5a 0%, #18a04c 100%);
  --gradient-dark: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  --shadow-red: 0 4px 24px rgba(255, 0, 51, 0.25);
  --shadow-green: 0 4px 24px rgba(31, 189, 90, 0.25);
  --radius: 10px;
  --transition: 0.22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--red);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--red);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: 0 0 6px 0;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}

/* ── LOGO (real Pin-Up brand identity) ── */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Brand mark wrapper */
.logo-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 3px;
}

/* "PiN-UP" red bold italic text */
.logo-brand-text {
  font-family: 'Nunito', 'Arial Black', Impact, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.75rem;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255, 0, 51, 0.25);
  display: block;
}

/* Green "CASINO" pill bar */
.logo-brand-sub {
  display: block;
  background: var(--green);
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 0.48rem;
  letter-spacing: 3.5px;
  font-weight: 800;
  font-style: normal;
  padding: 2px 8px;
  border-radius: 3px;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
}

/* Hover effect */
.logo:hover .logo-brand-text {
  color: var(--red2);
}

/* Footer logo - slightly smaller */
.logo-footer .logo-brand-text {
  font-size: 1.35rem;
}

.logo-footer .logo-brand-sub {
  font-size: 0.42rem;
  letter-spacing: 3px;
}

/* Legacy classes - kept for backward compat */
.logo-circle {
  display: none;
}

.logo-text-block {
  display: none;
}

.logo-sub {
  display: none;
}

/* ── NAV ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: nowrap;
}

.main-nav a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover {
  background: var(--black3);
  color: var(--white);
}

.main-nav a.nav-cta {
  background: var(--gradient-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  box-shadow: var(--shadow-green);
  margin-left: 0.4rem;
}

.main-nav a.nav-cta:hover {
  background: var(--green2);
}

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── CTA BUTTONS ── */
.cta-btn {
  display: inline-block;
  background: var(--gradient-green);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-green);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(31, 189, 90, 0.4);
  color: #fff;
}

.cta-btn-red {
  background: var(--gradient-red);
  box-shadow: var(--shadow-red);
}

.cta-btn-red:hover {
  box-shadow: 0 6px 28px rgba(255, 0, 51, 0.4);
}

.cta-sm {
  padding: 0.6rem 1.3rem;
  font-size: 0.88rem;
}

.cta-center {
  text-align: center;
  margin: 2rem 0;
}

/* ── HERO ── */
.site-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  background: var(--black2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  background: var(--black2);
  opacity: 0.92;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 3rem 0 3rem 0;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: var(--red);
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.hero-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── BONUS BAR ── */
.bonus-bar {
  background: linear-gradient(90deg, #1a0008 0%, #0d1a0d 100%);
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--green);
  padding: 1.2rem 0;
}

.bonus-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.bonus-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.bonus-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.bonus-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, #140005 0%, #0d0d0d 60%);
  border-bottom: 2px solid var(--red);
  padding: 3rem 0 2.5rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.page-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 700px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.breadcrumb a {
  color: var(--green);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* ── SECTIONS ── */
.section {
  padding: 4rem 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.section-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ── FEATURE CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── BONUS CARDS ── */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.bonus-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.bonus-card:hover {
  transform: translateY(-3px);
}

.bonus-card-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-red);
}

.bonus-card.green .bonus-card-top {
  background: var(--gradient-green);
}

.bonus-card-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.bonus-card.green .bonus-card-badge {
  background: var(--green);
}

.bonus-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.bonus-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.bonus-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ── TABLES ── */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--black3);
}

caption {
  caption-side: top;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-align: left;
}

th {
  background: var(--black2);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--red);
  white-space: nowrap;
}

td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

tr:last-child td {
  border-bottom: none;
}

tr.highlight-row td {
  background: rgba(255, 0, 51, 0.06);
}

tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.step-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-green);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.step-card h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ── BAR CHART ── */
.chart-wrap {
  margin: 2rem 0;
}

.chart-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.65rem;
}

.bar-label {
  width: 130px;
  font-size: 0.82rem;
  flex-shrink: 0;
  color: var(--text);
}

.bar-track {
  flex: 1;
  background: var(--black3);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--gradient-red);
  transition: width 0.8s ease;
}

.bar-fill.green {
  background: var(--gradient-green);
}

.bar-pct {
  width: 40px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
}

/* ── FAQ ── */
.faq-section {
  padding: 3rem 0;
}

.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.2rem;
  cursor: pointer;
  color: var(--white);
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--green);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--red);
}

.faq-item[open] {
  border-color: var(--red);
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ── SEO ARTICLE ── */
.seo-content {
  background: var(--black2);
  padding: 4rem 0;
}

.seo-article h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin: 1.8rem 0 0.7rem;
}

.seo-article h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 1.4rem 0 0.5rem;
}

.seo-article p {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 0.97rem;
}

.text-link {
  color: var(--green);
  border-bottom: 1px solid rgba(31, 189, 90, 0.4);
}

.text-link:hover {
  color: var(--red);
  border-color: rgba(255, 0, 51, 0.4);
}

/* ── SEO NEWS LINKS ── */
.seo-news-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0 0;
  padding: 1.2rem;
  background: var(--black3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.seo-news-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.3rem 0.7rem;
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all var(--transition);
}

.seo-news-links a:hover {
  color: var(--green);
  border-color: var(--green);
}

/* ── SECTION BANNER ── */
.section-banner {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  object-fit: contain;
}

/* ── RESPONSIBLE BAR ── */
.responsible-bar {
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  padding: 0.9rem 0;
  text-align: center;
}

.responsible-bar p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.responsible-bar a {
  color: var(--green);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black2);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

.footer-legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.footer-legal a {
  color: var(--text-muted);
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links nav a {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-links nav a:hover {
  color: var(--green);
}

.footer-cta-block {}

.footer-cta-block h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-cta-block p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── RATING STARS ── */
.rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.05em;
}

.rating-num {
  font-weight: 700;
  color: var(--white);
}

/* ── VIP TABLE ── */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.vip-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  padding: 1rem 0.5rem;
}

.vip-icon {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.vip-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

.vip-cashback {
  font-size: 0.72rem;
  color: var(--green);
}

/* ── LEGAL SECTION ── */
.legal-section {
  padding: 3rem 0;
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  margin: 1.8rem 0 0.6rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.legal-list {
  padding-left: 1.2rem;
}

.legal-list li {
  margin-bottom: 0.4rem;
}

.warning-box {
  background: rgba(255, 0, 51, 0.08);
  border: 1px solid rgba(255, 0, 51, 0.3);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.warning-box h2 {
  margin-top: 0;
}

/* ── RESPONSIVE ── */
/* ── JACKPOT BANNER ── */
.jackpot-banner {
  background: linear-gradient(135deg, #1a0008 0%, #0d0d0d 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  text-align: center;
  padding: 2rem;
  box-shadow: 0 0 40px rgba(245, 197, 24, 0.15);
}

.jackpot-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.jackpot-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(245, 197, 24, 0.4);
}

.jackpot-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ── FAQ PAGE ── */
.faq-q {
  font-weight: 600;
  color: var(--white);
  font-size: 0.97rem;
}

.faq-a {
  padding: 0 1.2rem 1.2rem;
  color: var(--text);
  font-size: 0.92rem;
}

.faq-a a {
  color: var(--green);
}

/* ── PROMO CODE ── */
code.promo-code {
  background: var(--black2);
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
}

/* ── WARNING BLOCK ── */
.warning-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 0, 51, 0.08);
  border: 1px solid rgba(255, 0, 51, 0.3);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.warning-block .warning-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.warning-block strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.4rem;
}

.warning-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── LEGAL NOTICE ── */
.legal-notice {
  background: rgba(31, 189, 90, 0.07);
  border: 1px solid rgba(31, 189, 90, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 1rem 0;
}

.legal-notice p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.legal-notice a {
  color: var(--green);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 660px) {
  .burger {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--black2);
    border-top: 1px solid var(--border);
    padding: 1rem;
    gap: 0.2rem;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 2rem 0;
  }

  .hero-bg img {
    opacity: 0.3;
  }

  .bonus-bar-inner {
    gap: 1rem;
  }

  .bonus-divider {
    display: none;
  }

  .vip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   NEW PAGE COMPONENTS — added for expanded pages
   ============================================================ */

/* Section Banner */
.section-banner {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  margin-bottom: 2.5rem;
  max-height: 320px;
}

/* Steps Grid (registration, APK install) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.step-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
}

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gradient-red);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
}

.step-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Cards Grid (poker types) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
}

.card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Promo Code Display */
code.promo-code {
  display: inline-block;
  background: rgba(255,0,51,0.12);
  border: 1px solid var(--red);
  color: var(--red);
  font-family: 'Courier New', monospace;
  font-size: .9rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 4px;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background var(--transition);
}

code.promo-code:hover {
  background: rgba(255,0,51,0.22);
}

/* SEO News Links (internal linking block) */
.seo-news-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.seo-news-links a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--black3);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .85rem;
  padding: .4rem .85rem;
  border-radius: 20px;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}

.seo-news-links a:hover {
  border-color: var(--red);
  color: var(--white);
}

/* CTA Center */
.cta-center {
  text-align: center;
}

/* Chart (bar chart) */
.chart-wrap {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.chart-title {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  text-align: center;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .85rem;
}

.bar-label {
  min-width: 140px;
  color: var(--text);
  font-size: .82rem;
}

.bar-track {
  flex: 1;
  height: 10px;
  background: var(--border);
  border-radius: 5px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--red);
  border-radius: 5px;
  transition: width 1s ease;
}

.bar-fill.green {
  background: var(--green);
}

.bar-pct {
  min-width: 70px;
  text-align: right;
  color: var(--text-muted);
  font-size: .82rem;
}

/* Responsible Gaming Warning Box */
.warning-box p {
  margin: 0;
}

/* SEO Article */
.seo-content {
  background: var(--black2);
  padding: 3rem 0;
}

.seo-article {
  max-width: 840px;
}

.seo-article h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.seo-article h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 1.75rem 0 .75rem;
}

.seo-article p {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.text-link {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: rgba(255,0,51,0.4);
  transition: color var(--transition);
}

.text-link:hover {
  color: #ff4466;
}

/* CTA Small */
.cta-sm {
  font-size: .9rem;
  padding: .6rem 1.25rem;
}

/* Page Hero */
.page-hero {
  background: var(--black2);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  line-height: 1.3;
  margin: .75rem 0 .75rem;
}

.page-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 720px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb span:not(:first-child) {
  color: var(--text);
}

/* Responsible bar */
.responsible-bar {
  background: rgba(255,0,51,0.06);
  border-top: 1px solid rgba(255,0,51,0.2);
  padding: 1rem 0;
  font-size: .85rem;
  color: var(--text-muted);
}

.responsible-bar a {
  color: var(--red);
}

/* Footer CTA Block */
.footer-cta-block h4 {
  color: var(--text-muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}

.footer-cta-block p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Mobile responsive for new components */
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .seo-news-links a { font-size: .78rem; padding: .35rem .7rem; }
  .bar-label { min-width: 100px; font-size: .75rem; }
}
/* ══ HEADER MOBILE CTA v4 ══ */
/* Desktop: hard hidden */
.header-cta-mobile { display:none !important; }
@media (min-width:701px) { .header-cta-mobile { display:none !important; } }

/* Mobile only */
@keyframes cta-glow {
  0%,100% { box-shadow:0 3px 14px rgba(232,50,30,.5); }
  50%      { box-shadow:0 5px 24px rgba(232,50,30,.8), 0 0 0 6px rgba(232,50,30,.12); }
}
@media (max-width:700px) {
  .header-cta-mobile {
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin-left:auto !important;
    margin-right:10px !important;
    flex-shrink:0 !important;
    padding:9px 17px !important;
    background:linear-gradient(135deg,#ff3a1e,#bf1f1a) !important;
    color:#fff !important;
    font-size:12.5px !important;
    font-weight:800 !important;
    letter-spacing:.07em !important;
    text-transform:uppercase !important;
    white-space:nowrap !important;
    text-decoration:none !important;
    border-radius:10px !important;
    border:1.5px solid rgba(255,255,255,.22) !important;
    animation:cta-glow 2.8s ease-in-out infinite !important;
  }
  .header-cta-mobile:active { transform:scale(.96) !important; }
}
