/* =============================================
   BETANO ONLINE ES — Premium CSS 2026
   ============================================= */

/* CSS VARIABLES */
:root {
    --brand-primary: #e63946;
    --brand-gold: #f4c430;
    --brand-dark: #0a1628;
    --brand-navy: #0d1f3c;
    --brand-mid: #1a2f4a;
    --brand-light: #1e3a5f;
    --brand-accent: #4fc3f7;
    --text-primary: #ffffff;
    --text-secondary: #a8bbd4;
    --text-muted: #6b8aaa;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --shadow-glow: 0 0 30px rgba(230, 57, 70, 0.3);
    --shadow-gold: 0 0 20px rgba(244, 196, 48, 0.4);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--brand-dark);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    background: var(--brand-primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    transition: top var(--transition);
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
}

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

/* AGE BAR */
.age-bar {
    background: #b71c1c;
    color: #fff;
    font-size: 0.78rem;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.age-bar a {
    color: #fff;
    text-decoration: underline;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-es {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--brand-gold);
    display: block;
    letter-spacing: 0;
    margin-top: -4px;
}

.main-nav {
    display: flex;
    gap: 2px;
    margin-left: auto;
    flex-wrap: nowrap;
}

.nav-link {
    font-size: 0.80rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: var(--glass-bg);
}

.nav-link.active {
    color: var(--brand-accent);
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #c62828 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.6);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

.btn-ghost {
    background: var(--glass-bg);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--glass-hover);
    color: #fff;
}

.btn-hero {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #e5a800 100%);
    color: #0a1628;
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 30px rgba(244, 196, 48, 0.5);
    font-weight: 800;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(244, 196, 48, 0.7);
}

/* BURGER */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: rgba(230, 57, 70, 0.15);
    border: 1.5px solid rgba(230, 57, 70, 0.4);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px 12px;
    width: 46px;
    height: 42px;
    transition: all var(--transition);
}

.burger-btn:hover {
    background: rgba(230, 57, 70, 0.3);
    border-color: var(--brand-primary);
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

/* Burger open state — X animation */
.nav-open .burger-btn {
    background: rgba(230, 57, 70, 0.4);
    border-color: var(--brand-primary);
}

.nav-open .burger-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .burger-btn span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-open .burger-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.7) 50%, rgba(10, 22, 40, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 196, 48, 0.15);
    border: 1px solid rgba(244, 196, 48, 0.3);
    color: var(--brand-gold);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #fff 0%, var(--brand-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--brand-gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* BONUS SECTION */
.bonus-section {
    padding: 60px 0;
}

.bonus-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.12) 0%, rgba(244, 196, 48, 0.08) 100%);
    border: 1px solid rgba(230, 57, 70, 0.25);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-img {
    border-radius: var(--radius-lg);
    width: 100%;
}

.bonus-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-gold), #e5a800);
    color: #0a1628;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.bonus-right h2 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.25;
}

.bonus-right p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.bonus-list {
    margin-bottom: 28px;
}

.bonus-list li {
    color: var(--text-secondary);
    padding: 5px 0;
    font-size: 0.95rem;
}

/* TRUST SECTION */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(13, 31, 60, 0.5) 0%, transparent 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trust-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.trust-item:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 195, 247, 0.3);
    background: var(--glass-hover);
}

.trust-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.trust-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SPORTS / CASINO SECTIONS */
.sports-section,
.casino-section {
    padding: 80px 0;
}

.casino-section {
    background: rgba(13, 31, 60, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, var(--brand-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.sports-img-wrap {
    margin-bottom: 40px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.section-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 48px;
}

.sport-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}

.sport-card:hover {
    transform: translateY(-4px);
    background: var(--glass-hover);
    border-color: rgba(79, 195, 247, 0.35);
    box-shadow: 0 8px 30px rgba(79, 195, 247, 0.15);
}

.sport-emoji {
    font-size: 1.8rem;
}

.sport-name {
    font-size: 0.85rem;
    font-weight: 700;
}

.sport-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* SLOTS GRID */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.slot-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.slot-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 57, 70, 0.35);
    box-shadow: var(--shadow-glow);
}

.slot-thumb {
    height: 130px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slot-1 {
    background: linear-gradient(135deg, #1a237e, #7b1fa2);
}

.slot-2 {
    background: linear-gradient(135deg, #880e4f, #e91e63);
}

.slot-3 {
    background: linear-gradient(135deg, #bf360c, #f57c00);
}

.slot-4 {
    background: linear-gradient(135deg, #006064, #00bcd4);
}

.slot-5 {
    background: linear-gradient(135deg, #1b5e20, #4caf50);
}

.slot-6 {
    background: linear-gradient(135deg, #0d47a1, #2196f3);
}

/* Real slot images */
.slot-thumb-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

/* SEO bullet list */
.seo-list {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seo-list li {
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    font-size: 0.92rem;
    line-height: 1.6;
}

.seo-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}

.slot-info {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.slot-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.slot-rtp {
    font-size: 0.78rem;
    color: var(--brand-gold);
    font-weight: 600;
}

.slot-provider {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.btn-slot {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--brand-primary), #c62828);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px;
    transition: all var(--transition);
}

.btn-slot:hover {
    background: linear-gradient(135deg, #c62828, #b71c1c);
}

/* ── EXTENDED SLOTS (4-col) — shared across all pages ── */
.extended-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.slot-card-sm {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.slot-card-sm:hover {
    transform: scale(1.02);
    border-color: rgba(244, 196, 48, 0.3);
    box-shadow: var(--shadow-gold);
}

.slot-info-sm {
    padding: 10px 12px;
}

.slot-name-sm {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 3px;
    color: #fff;
}

.slot-rtp-sm {
    font-size: 0.75rem;
    color: var(--brand-gold);
    font-weight: 600;
}

.btn-slot-sm {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--brand-primary), #c62828);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 9px;
    transition: all var(--transition);
}

.btn-slot-sm:hover {
    background: linear-gradient(135deg, #c62828, #b71c1c);
}


/* TABLES */
.table-wrap {
    margin-top: 20px;
    overflow-x: auto;
}

.table-wrap h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--brand-accent);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.data-table caption {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-align: left;
    padding-bottom: 8px;
}

.data-table th {
    background: rgba(79, 195, 247, 0.12);
    color: var(--brand-accent);
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid rgba(79, 195, 247, 0.2);
    white-space: nowrap;
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.data-table tr:hover td {
    background: var(--glass-bg);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.highlight-cell {
    color: var(--brand-gold) !important;
    font-weight: 700;
}

.positive {
    color: #4caf50 !important;
    font-weight: 700;
}

.table-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.badge-high {
    background: rgba(230, 57, 70, 0.2);
    color: #ef9a9a;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-mid {
    background: rgba(244, 196, 48, 0.2);
    color: var(--brand-gold);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-low {
    background: rgba(76, 175, 80, 0.2);
    color: #81c784;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* PAYMENTS */
.payments-section {
    padding: 80px 0;
    background: rgba(13, 31, 60, 0.4);
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    justify-content: center;
}

.pay-logo {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.pay-logo:hover {
    border-color: var(--brand-accent);
    color: #fff;
}

/* SEO CONTENT */
.seo-content {
    padding: 80px 0;
}

.seo-article {
    display: block;
}

.seo-article h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.seo-article h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--brand-accent);
}

.seo-article p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.text-link {
    color: var(--brand-accent);
    border-bottom: 1px dashed rgba(79, 195, 247, 0.4);
    transition: all var(--transition);
}

.text-link:hover {
    color: #fff;
    border-color: #fff;
}

.seo-news-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.seo-news-links a {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.seo-news-links a:hover {
    color: #fff;
    border-color: var(--brand-accent);
    background: var(--glass-hover);
}

.related-sports {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.sport-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    transition: all var(--transition);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sport-link span {
    font-weight: 700;
    color: #fff;
}

.sport-link:hover {
    transform: translateX(3px);
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: rgba(13, 31, 60, 0.4);
}

.faq-section h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 36px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item[open] {
    border-color: rgba(79, 195, 247, 0.35);
}

.faq-item summary {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--brand-accent);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.92rem;
}

/* FOOTER */
.site-footer {
    background: var(--brand-navy);
    border-top: 1px solid var(--glass-border);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-license {
    font-size: 0.72rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-nav-col h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand-accent);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-nav-col nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-nav-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-nav-col a:hover {
    color: #fff;
}

.footer-responsible {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    margin-bottom: 24px;
}

.responsible-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.r-icon {
    font-size: 1.6rem;
}

.r-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    flex: 1;
    min-width: 200px;
}

.r-link {
    font-size: 0.82rem;
    color: var(--brand-accent);
    border: 1px solid rgba(79, 195, 247, 0.3);
    padding: 5px 14px;
    border-radius: 100px;
    transition: all var(--transition);
}

.r-link:hover {
    background: rgba(79, 195, 247, 0.1);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    max-width: 700px;
    margin: 0 auto !important;
    line-height: 1.65;
}

.footer-disclaimer a {
    color: var(--brand-accent);
}

/* ═══════════════════════════════════════════
   MOBILE MENU — FULL-SCREEN OVERLAY
   ═══════════════════════════════════════════ */

/* Lock body scroll when menu is open */
body.nav-open {
    overflow: hidden;
}

/* Burger button above everything */
body.nav-open .burger-btn {
    z-index: 9999;
    position: relative;
}

/* Full-screen overlay */
.nav-open .main-nav {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #0a1628 !important;
    z-index: 9998 !important;
    padding: 80px 20px 40px !important;
    gap: 6px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Each nav link — big white readable button */
.nav-open .nav-link {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    padding: 15px 20px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    text-decoration: none !important;
    white-space: normal !important;
    transition: background 0.2s ease, border-color 0.2s ease !important;
    box-sizing: border-box !important;
}

.nav-open .nav-link:hover {
    background: rgba(230, 57, 70, 0.2) !important;
    border-color: rgba(230, 57, 70, 0.5) !important;
    color: #ffffff !important;
}

.nav-open .nav-link.active {
    background: rgba(244, 196, 48, 0.12) !important;
    border-color: rgba(244, 196, 48, 0.4) !important;
    color: #f4c430 !important;
}

/* Mobile CTA button */
.nav-open .mobile-cta {
    display: flex !important;
    justify-content: center !important;
    margin-top: 16px !important;
    padding: 16px 24px !important;
    font-size: 1.05rem !important;
    border-radius: 12px !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-sports {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Hide nav and action buttons — show only burger */
    .main-nav {
        display: none;
    }

    .header-actions .btn-outline,
    .header-actions .btn-primary {
        display: none;
    }

    .burger-btn {
        display: flex;
        margin-left: auto;
        position: relative;
        z-index: 9999;
        /* above the nav overlay */
    }

}

/* ── 768px responsive overrides ── */
.trust-grid {
    grid-template-columns: repeat(2, 1fr);
}

.bonus-card {
    grid-template-columns: 1fr;
    padding: 28px;
}

.bonus-img {
    display: none;
}

.sports-grid {
    grid-template-columns: repeat(2, 1fr);
}

.slots-grid {
    grid-template-columns: repeat(2, 1fr);
}

.extended-slots {
    grid-template-columns: repeat(2, 1fr);
}

.seo-news-links {
    grid-template-columns: 1fr;
}

.related-sports {
    grid-template-columns: 1fr;
}

.footer-grid {
    grid-template-columns: 1fr 1fr;
}

.hero-stats {
    gap: 16px;
}

.stat-num {
    font-size: 1.4rem;
}

.section-img {
    height: 180px;
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .slots-grid {
        grid-template-columns: 1fr;
    }

    .extended-slots {
        grid-template-columns: 1fr;
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    /* ── 768px responsive overrides ── */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .bonus-img {
        display: none;
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .extended-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-news-links {
        grid-template-columns: 1fr;
    }

    .related-sports {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-num {
        font-size: 1.4rem;
    }

    .section-img {
        height: 180px;
    }
}


.footer-extra-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 20px;
}
.footer-extra-row a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color 0.2s;
    white-space: nowrap;
}
.footer-extra-row a:hover {
    color: var(--brand-accent);
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .slots-grid {
        grid-template-columns: 1fr;
    }

    .extended-slots {
        grid-template-columns: 1fr;
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
        text-align: center;
    }
}
/* Contextual back-to-home (unique anchor per page for SEO) */
.back-home { padding: 1.5rem 0 2rem; }
.back-home-link { font-size: 0.95rem; color: var(--text-secondary); text-align: center; max-width: 720px; margin: 0 auto; }
.back-home-link a { color: var(--brand-gold); border-bottom: 1px solid rgba(244,196,48,0.3); transition: var(--transition); }
.back-home-link a:hover { color: var(--brand-primary); border-color: var(--brand-primary); }
/* Page meta-info (visible date + author) — under H1, E-E-A-T signal */
.page-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    align-items: center;
    margin: 12px 0 4px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid var(--brand-gold);
    border-radius: 6px;
    font-size: 0.84rem;
    color: var(--text-secondary);
}
.page-meta-info .meta-item { display: inline-flex; align-items: center; gap: 6px; }
.page-meta-info .meta-icon { color: var(--brand-gold); }
.page-meta-info a { color: var(--brand-accent); text-decoration: none; border-bottom: 1px dotted rgba(79,195,247,0.5); }
.page-meta-info a:hover { color: var(--brand-primary); border-color: var(--brand-primary); }

/* Author bio block — appears before FAQ, full E-E-A-T */
.author-bio {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px 28px;
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(244,196,48,0.04), rgba(230,57,70,0.04));
    border: 1px solid rgba(244,196,48,0.18);
    border-radius: var(--radius-lg);
}
.author-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.6rem;
    color: #1a0030;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.author-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin: 0 0 4px;
    color: #fff;
}
.author-title { font-size: 0.86rem; color: var(--brand-gold); font-weight: 600; margin-bottom: 12px; }
.author-info p { font-size: 0.92rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 10px; }
.author-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.author-creds span {
    font-size: 0.74rem;
    background: rgba(79,195,247,0.12);
    border: 1px solid rgba(79,195,247,0.3);
    color: var(--brand-accent);
    padding: 4px 10px;
    border-radius: 100px;
}
@media (max-width: 640px) {
    .author-bio { grid-template-columns: 1fr; text-align: center; }
    .author-avatar { margin: 0 auto; }
    .author-creds { justify-content: center; }
}

/* Mobile responsive tables — fix horizontal overflow on /pagos/ and /retiros/ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-wrap table { min-width: 100%; }
@media (max-width: 768px) {
    .table-wrap table { font-size: 0.82rem; }
    .table-wrap th, .table-wrap td { padding: 8px 10px !important; }
}
/* === A11Y / UX / PERF — adversarial-review fixes 2026-05-26 === */

/* WCAG 2.4.7 Focus Visible — keyboard navigation outline */
.btn:focus-visible, .nav-link:focus-visible, a:focus-visible, button:focus-visible,
.burger-btn:focus-visible, summary:focus-visible {
    outline: 3px solid var(--brand-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* WCAG 2.3.3 — Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Reveal-on-scroll fallback — content visible if JS fails */
.trust-item, .sport-card, .slot-card-sm, .faq-item, .bonus-card, .pay-logo {
    opacity: 1;
}
.js-loaded .trust-item, .js-loaded .sport-card, .js-loaded .slot-card-sm,
.js-loaded .bonus-card, .js-loaded .pay-logo {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}
.js-loaded .reveal-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Tablet breakpoint fix — header doesn't break on 768-1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-nav .nav-link, .nav-list .nav-link {
        font-size: 0.78rem !important;
        padding: 8px 8px !important;
    }
    .header-actions .btn { font-size: 0.82rem; padding: 8px 14px; }
    .header-inner { gap: 8px !important; flex-wrap: nowrap; }
}

/* Sticky mobile CTA bar (industry standard for gambling affiliates) */
.mobile-sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0; right: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.97), rgba(13,31,60,0.97));
    border-top: 2px solid var(--brand-gold);
    padding: 12px 16px;
    z-index: 9990;
    display: flex; align-items: center; gap: 12px;
    backdrop-filter: blur(12px);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-sticky-cta.visible { bottom: 0; }
.mobile-sticky-cta-text { flex: 1; font-size: 0.86rem; color: #fff; line-height: 1.35; }
.mobile-sticky-cta .btn {
    background: linear-gradient(135deg, var(--brand-gold), #d4a800);
    color: #0a1628; padding: 10px 18px; border-radius: 8px;
    font-weight: 800; font-size: 0.88rem; white-space: nowrap;
    text-decoration: none; box-shadow: 0 4px 12px rgba(244,196,48,0.35);
}
@media (min-width: 769px) { .mobile-sticky-cta { display: none !important; } }
body.has-sticky-cta { padding-bottom: 80px; }

/* Burger button affordance — visible tap area */
@media (max-width: 900px) {
    .burger-btn, #burger-btn, #burgerBtn {
        min-width: 44px !important;
        min-height: 44px !important;
        background: rgba(255,255,255,0.06) !important;
        border-radius: 8px !important;
    }
}