/* =====================================================
   INNER PAGES SUPPLEMENT CSS
   For: resena, bonos, tragaperras, casino-en-vivo,
        pagos, movil, faq, legal pages
   ===================================================== */

/* STEP CARDS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 36px 0;
}

.step-card {
    background: var(--navy-700);
    border: 1px solid rgba(255, 184, 0, 0.12);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--navy-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    margin: 0 auto 14px;
    font-family: var(--font-display);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.step-card p {
    color: var(--gray-400);
    font-size: 0.85rem;
    line-height: 1.55;
}

/* SLOT GRID */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.slot-card {
    background: var(--navy-700);
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.slot-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: var(--shadow-gold);
}

.slot-thumb {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.slot-info {
    padding: 12px;
}

.slot-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 4px;
}

.slot-provider {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.slot-rtp {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 6px;
}

/* COMPARISON TABLE */
.comparison-section {
    padding: 64px 0;
}

.highlight-row td {
    background: rgba(255, 184, 0, 0.06);
}

.highlight-row td:first-child {
    border-left: 3px solid var(--gold-500);
}

.check-yes {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.check-no {
    color: var(--accent-red);
    font-weight: 700;
}

/* INFO BOXES */
.info-box {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 24px 0;
}

.info-box.warning {
    background: rgba(234, 179, 8, 0.08);
    border-color: rgba(234, 179, 8, 0.35);
}

.info-box.success {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
}

.info-box-title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.info-box p {
    color: var(--gray-200);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* MOBILE FEATURES */
.mobile-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

.mobile-feature {
    background: var(--navy-700);
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mobile-feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.mobile-feature h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.mobile-feature p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.55;
}

/* SCORE CARDS (resena page) */
.score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.score-card {
    background: var(--navy-700);
    border: 1px solid rgba(255, 184, 0, 0.12);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: all var(--transition);
}

.score-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 184, 0, 0.35);
}

.score-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold-500);
    line-height: 1;
    margin-bottom: 6px;
}

.score-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
    line-height: 1.3;
}

/* BAR CHART (horizontal) */
.hbar-chart {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0;
}

.hbar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hbar-label {
    min-width: 140px;
    font-size: 0.85rem;
    color: var(--gray-200);
    font-weight: 500;
}

.hbar-track {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
}

.hbar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
    animation: fillBar 1.2s ease-out forwards;
}

.hbar-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-400);
    min-width: 38px;
    text-align: right;
}

@media (max-width: 768px) {
    .mobile-features {
        grid-template-columns: 1fr;
    }

    .score-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .score-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ── SKIP LINK (Accessibility) ── */
.skip-link {
    position: absolute;
    top: -60px;
    left: 12px;
    background: var(--gold-500);
    color: var(--navy-900);
    padding: 10px 18px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 99999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--gold-300);
    outline-offset: 2px;
}

/* ── MOBILE NAV OPEN STATE ── */
.mobile-nav.open {
    display: block !important;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── STAT HIGHLIGHT CARDS ── */
.stat-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.stat-highlight-card {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.08), rgba(255, 184, 0, 0.02));
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
}

.stat-highlight-card .stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-500);
}

.stat-highlight-card .stat-desc {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 4px;
}

/* ── PRINT STYLES ── */
@media print {

    .site-header,
    .mobile-nav,
    .scroll-top,
    #cookieBanner,
    #ageGate,
    .btn {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .data-table {
        border: 1px solid #ccc;
    }

    .data-table th {
        background: #eee;
        color: black;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 11px;
        color: #555;
    }

    .seo-article {
        max-width: 100%;
    }
}