/* ============================================================
   BLACKJACK GALAXSYS MX — Design System
   Theme: Luxury Casino — black / emerald-green / gold
   Domain: blackjack-galaxsys.com.mx
   © 2026 | Desarrollado por deportech-mexico.com.mx
   ============================================================ */

:root {
    --bg: #070D0A;
    --bg2: #0D1410;
    --green: #1A4731;
    --green2: #0F6B3A;
    --emerald: #2ECC71;
    --gold: #D4AF37;
    --gold2: #FFD700;
    --red: #C0392B;
    --red2: #E74C3C;
    --white: #F5F5F0;
    --muted: rgba(245, 245, 240, .5);
    --card-bg: #F8F4E8;
    --electric: #00FF88;

    --glow-green: 0 0 20px rgba(46, 204, 113, .35);
    --glow-gold: 0 0 20px rgba(212, 175, 55, .4);
    --glow-red: 0 0 20px rgba(192, 57, 43, .4);

    --radius: 14px;
    --shadow: 0 8px 40px rgba(0, 0, 0, .6);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(ellipse at 20% 20%, rgba(26, 71, 49, .15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, .06) 0%, transparent 50%);
}

*,
*::before,
*::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
}

@media (prefers-reduced-motion: no-preference) {

    *,
    *::before,
    *::after {
        animation-duration: revert !important;
        transition-duration: revert !important;
        scroll-behavior: revert !important;
    }
}

a {
    color: var(--emerald);
    text-decoration: none;
    transition: .15s;
}

a:hover {
    color: var(--gold2);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 4px;
    z-index: 9999;
    background: var(--gold);
    color: #000;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.skip-link:focus {
    left: 12px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

/* ── TOPBAR ── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 13, 10, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, .2);
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 8px;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow: hidden;
}

.topbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: .5px;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 60px);
}

.topbar-logo:hover {
    color: var(--gold2);
}

.topbar-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    box-shadow: var(--glow-gold);
    flex-shrink: 0;
}

.topbar-logo .suit {
    color: var(--emerald);
}

.topbar-inner nav[role="navigation"] {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: visible;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(245, 245, 240, .7);
    transition: all .17s;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(212, 175, 55, .1);
    color: var(--gold2);
}

.nav-links a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--green2), #0D5A30) !important;
    color: #fff !important;
    padding: 7px 16px !important;
    box-shadow: var(--glow-green);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(46, 204, 113, .5) !important;
    color: #fff !important;
}

/* ── BURGER ── */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    z-index: 300;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    position: static;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all .25s ease;
    pointer-events: none;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 90;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.nav-overlay.active {
    display: block;
}

/* ── MOBILE DROPDOWN ── */
@media (max-width: 900px) {
    .burger-btn {
        display: flex !important;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column !important;
        align-items: stretch !important;
        flex-wrap: nowrap !important;
        gap: 0;
        z-index: 9999;
        background: rgba(7, 13, 10, .99);
        border-top: 2px solid rgba(212, 175, 55, .3);
        box-shadow: 0 20px 60px rgba(0, 0, 0, .9);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        overflow: hidden;
        padding: 0;
        margin: 0;
    }

    .nav-links.open {
        display: flex !important;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: flex !important;
        width: 100% !important;
        box-sizing: border-box !important;
        align-items: center !important;
        padding: 16px 24px !important;
        min-height: 54px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: rgba(245, 245, 240, .9) !important;
        border-radius: 0 !important;
        background: none !important;
        white-space: normal !important;
        text-decoration: none !important;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(212, 175, 55, .08) !important;
        color: var(--gold2) !important;
        padding-left: 30px !important;
    }

    .nav-links .nav-cta {
        margin: 10px 16px 14px !important;
        padding: 14px 24px !important;
        border-radius: 12px !important;
        justify-content: center !important;
        background: linear-gradient(135deg, var(--green2), #0D5A30) !important;
        color: #fff !important;
        min-height: 48px !important;
        width: calc(100% - 32px) !important;
        box-sizing: border-box !important;
    }
}

/* ── BREADCRUMB ── */
.breadcrumb {
    background: rgba(212, 175, 55, .04);
    border-bottom: 1px solid rgba(212, 175, 55, .08);
    padding: 8px 0;
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: var(--muted);
}

.breadcrumb-inner a {
    color: var(--gold);
}

.breadcrumb-inner span {
    color: rgba(212, 175, 55, .35);
}

.breadcrumb-current {
    color: var(--white);
    font-weight: 700;
}

/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 60%, rgba(26, 71, 49, .4) 0%, rgba(7, 13, 10, 0) 70%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../images/hero.png') center/cover no-repeat;
    opacity: .4;
    filter: saturate(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 13, 10, .2) 0%, rgba(7, 13, 10, .7) 75%, var(--bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px 48px;
    max-width: 860px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--green2), var(--green));
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    box-shadow: var(--glow-green);
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gold2), var(--gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: .5px;
}

.hero-sub {
    font-size: clamp(.9rem, 2.2vw, 1.15rem);
    color: rgba(245, 245, 240, .7);
    margin-bottom: 32px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), #B8860B);
    color: #070D0A;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: .95rem;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 24px rgba(212, 175, 55, .45);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(212, 175, 55, .65);
    color: #070D0A;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, .1);
    color: var(--gold2);
    border: 1px solid rgba(212, 175, 55, .3);
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 14px;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
    font-size: .95rem;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, .18);
    color: var(--gold2);
    transform: translateY(-1px);
}

.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green2), #0D5A30);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: .95rem;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: all .2s;
    box-shadow: var(--glow-green);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(46, 204, 113, .5);
    color: #fff;
}

/* ── CARDS ── */
.card {
    background: linear-gradient(135deg, rgba(13, 20, 16, .95), rgba(7, 13, 10, .98));
    border: 1px solid rgba(212, 175, 55, .15);
    border-radius: var(--radius);
    padding: 24px;
    transition: all .2s;
}

.card:hover {
    border-color: rgba(212, 175, 55, .35);
    box-shadow: var(--glow-green);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.card-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold2);
    margin-bottom: 8px;
}

.card-desc {
    font-size: .82rem;
    color: rgba(245, 245, 240, .65);
    line-height: 1.65;
}

/* ── CARDS GRID ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

/* ── SECTION TITLE ── */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--gold2);
    margin-bottom: 8px;
}

.section-sub {
    color: rgba(245, 245, 240, .6);
    font-size: .9rem;
    margin-bottom: 32px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green2));
    border-radius: 2px;
    margin: 12px 0 28px;
}

/* ── TABLE ── */
.table-wrap {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, .15);
    margin-bottom: 32px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}

.data-table th {
    background: rgba(26, 71, 49, .4);
    font-family: 'Cinzel', serif;
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold);
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, .15);
    white-space: nowrap;
}

.data-table td {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: .82rem;
    color: rgba(245, 245, 240, .8);
    vertical-align: middle;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:nth-child(even) td {
    background: rgba(26, 71, 49, .06);
}

.data-table tr:hover td {
    background: rgba(212, 175, 55, .04);
}

.td-green {
    color: var(--emerald);
    font-weight: 700;
}

.td-red {
    color: var(--red2);
    font-weight: 700;
}

.td-gold {
    color: var(--gold2);
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

.td-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--gold2);
}

/* ── PLAYING CARD VISUAL ── */
.playing-card {
    background: var(--card-bg);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, .15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    color: #1a1a1a;
    position: relative;
    transition: transform .2s;
    user-select: none;
}

.playing-card.red-card {
    color: var(--red);
}

.playing-card:hover {
    transform: translateY(-4px) rotate(2deg);
}

/* ── STAT BOXES ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.stat-box {
    background: rgba(26, 71, 49, .15);
    border: 1px solid rgba(46, 204, 113, .15);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

.stat-val {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold2);
    display: block;
}

.stat-lbl {
    font-size: .72rem;
    color: var(--muted);
    margin-top: 4px;
    display: block;
}

/* ── SEO CONTENT ── */
.seo-content {
    background: rgba(13, 20, 16, .5);
    border-top: 1px solid rgba(212, 175, 55, .08);
}

.seo-article h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold2);
    margin-bottom: 12px;
    margin-top: 28px;
}

.seo-article h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--emerald);
    margin: 20px 0 8px;
}

.seo-article p {
    font-size: .9rem;
    color: rgba(245, 245, 240, .75);
    line-height: 1.75;
    margin-bottom: 14px;
}

.text-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text-link:hover {
    color: var(--gold2);
}

/* ── RELATED LINKS ── */
.related-sports {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.sport-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 71, 49, .2);
    border: 1px solid rgba(46, 204, 113, .2);
    color: var(--emerald) !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .17s;
    white-space: nowrap;
}

.sport-link:hover {
    background: rgba(26, 71, 49, .4);
    border-color: rgba(46, 204, 113, .4);
    color: var(--gold2) !important;
    transform: translateY(-1px);
}

.sport-link span {
    color: var(--white);
    font-weight: 400;
}

/* ── FOOTER ── */
footer {
    background: rgba(5, 9, 7, .98);
    border-top: 1px solid rgba(212, 175, 55, .1);
    padding: 48px 0 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold2);
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--emerald);
}

.footer-desc {
    font-size: .78rem;
    color: rgba(245, 245, 240, .45);
    line-height: 1.6;
    margin-bottom: 12px;
}

.age-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-weight: 900;
    font-size: .7rem;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: .5px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col li a {
    font-size: .78rem;
    color: rgba(245, 245, 240, .5);
    transition: .15s;
}

.footer-col li a:hover {
    color: var(--gold2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-copy {
    font-size: .72rem;
    color: rgba(245, 245, 240, .3);
}

.footer-legal {
    font-size: .65rem;
    color: rgba(245, 245, 240, .25);
}

.footer-developer {
    font-size: .7rem;
    color: rgba(245, 245, 240, .35);
}

.footer-developer a {
    color: var(--gold);
}

/* ── HIGHLIGHT BOX ── */
.hl-box {
    background: rgba(26, 71, 49, .15);
    border: 1px solid rgba(46, 204, 113, .2);
    border-left: 4px solid var(--emerald);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 20px 0;
}

.hl-box p {
    font-size: .85rem;
    color: rgba(245, 245, 240, .8);
    margin: 0;
}

/* ── SR-ONLY ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── PAGE HERO ── */
.page-hero {
    padding: 48px 0 36px;
    text-align: center;
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold2), var(--gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 12px 0 10px;
}

.page-sub {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(245, 245, 240, .65);
    font-size: .95rem;
}

/* ── SVG CHARTS ── */
.svg-chart-wrap {
    max-width: 640px;
    margin: 0 auto 32px;
}

.svg-chart-wrap svg {
    width: 100%;
    height: auto;
}

/* ── FAQ ── */
.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, .1);
    padding: 18px 0;
}

.faq-q {
    font-family: 'Cinzel', serif;
    font-size: .95rem;
    color: var(--gold2);
    margin-bottom: 8px;
    cursor: pointer;
}

.faq-a {
    font-size: .85rem;
    color: rgba(245, 245, 240, .7);
    line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .hero {
        min-height: 420px;
    }
}

@media(max-width:600px) {
    .section {
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════
   SKILLS IMPROVEMENTS — 2026-02-27
   casino-betting + page-cro + seo-audit
   ═══════════════════════════════════ */

/* Gambling Warning (casino-betting Step 8) */
.gambling-warning {
    background: rgba(192,57,43,.08);
    border-top: 1px solid rgba(192,57,43,.2);
    padding: 10px 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .72rem;
    color: rgba(245,245,240,.5);
    line-height: 1.5;
}
.gambling-warning span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.gambling-warning a { color: rgba(245,245,240,.6); }

/* Social Proof Trust Bar (page-cro) */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    justify-content: center;
    margin-top: 20px;
    font-size: .73rem;
    color: rgba(245,245,240,.5);
}
.trust-item { display: flex; align-items: center; gap: 4px; }
.trust-item span { color: var(--emerald); font-weight: 700; }
.trust-sep { color: rgba(245,245,240,.2); }

/* Pulse animation for primary CTA (page-cro) */
.btn-green {
    animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(46,204,113,.35); }
    50%       { box-shadow: 0 4px 36px rgba(46,204,113,.65); }
}

/* Sticky mobile demo CTA (page-cro) */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(135deg,var(--emerald-dark),#0F6B3A);
    padding: 12px 20px;
    text-align: center;
    z-index: 999;
    border-top: 2px solid var(--emerald);
}
.sticky-cta a {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: .9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
@media(max-width: 760px) {
    .sticky-cta { display: block; }
    body { padding-bottom: 56px; }
}

/* Screen-reader only (for captions) */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Page Hero (inner pages) */
.page-hero {
    text-align: center;
    padding: 20px 0 36px;
}
.page-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--gold2);
    margin-bottom: 12px;
    line-height: 1.2;
}
.page-sub {
    color: rgba(245,245,240,.65);
    max-width: 680px;
    margin: 0 auto;
    font-size: .95rem;
}

/* FAQ Items */
.faq-item {
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 14px;
    background: rgba(255,255,255,.02);
}
.faq-q {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--gold2);
    margin-bottom: 10px;
}
.faq-a {
    font-size: .85rem;
    color: rgba(245,245,240,.7);
    line-height: 1.65;
    margin: 0;
}

/* Highlight box */
.hl-box {
    background: rgba(26,71,49,.2);
    border: 1px solid rgba(46,204,113,.2);
    border-left: 4px solid var(--emerald);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: .85rem;
    color: rgba(245,245,240,.75);
    margin: 20px 0;
    line-height: 1.6;
}

/* Table cell color helpers */
.td-name { font-weight: 700; color: var(--gold2); }
.td-green { color: #2ECC71; font-weight: 700; }
.td-red   { color: #E74C3C; font-weight: 700; }
.td-gold  { color: var(--gold2); font-weight: 700; }
