/* ==========================================================================
   Ofertas de Jogo — Bold Crimson Dark Theme
   Colors: bg #120a0a, crimson #dc2626, yellow #fbbf24, card #1e1212, text #f0e8e8
   Fonts: Montserrat (headings), Roboto (body)
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #f0e8e8;
    background-color: #120a0a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: #f0e8e8;
}

a {
    color: #fbbf24;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: #dc2626;
}

ul {
    list-style: none;
}

img, svg {
    display: inline-block;
    vertical-align: middle;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

strong {
    font-weight: 700;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    line-height: 1.4;
}

.btn--primary {
    background-color: #dc2626;
    color: #fff;
    border-color: #dc2626;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.btn--primary:hover,
.btn--primary:focus {
    background-color: #b91c1c;
    border-color: #b91c1c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.btn--outline {
    background-color: transparent;
    color: #fbbf24;
    border-color: #fbbf24;
}

.btn--outline:hover,
.btn--outline:focus {
    background-color: #fbbf24;
    color: #120a0a;
    transform: translateY(-2px);
}

.btn--bold {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--full {
    width: 100%;
}

.btn--sm {
    font-size: 0.875rem;
    padding: 10px 20px;
}

.btn__icon {
    flex-shrink: 0;
}

/* ==========================================================================
   1. 18+ Age Banner
   ========================================================================== */
.age-banner {
    background: linear-gradient(90deg, #991b1b, #dc2626, #991b1b);
    padding: 8px 16px;
    text-align: center;
}

.age-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.age-banner__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #120a0a;
    color: #fbbf24;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.age-banner__text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
}

/* ==========================================================================
   2. Header
   ========================================================================== */
.header {
    background: rgba(18, 10, 10, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid #1e1212;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 16px;
    transition: box-shadow 0.3s ease;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #f0e8e8;
}

.header__logo-icon {
    flex-shrink: 0;
}

.header__logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #f0e8e8;
}

.header__logo-accent {
    color: #dc2626;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__nav-link {
    display: inline-block;
    padding: 8px 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #f0e8e8;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.header__nav-link:hover,
.header__nav-link:focus,
.header__nav-link--active {
    color: #fbbf24;
    background-color: rgba(251, 191, 36, 0.08);
}

.header__nav-link--highlight {
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 6px 16px;
    font-weight: 700;
}

.header__nav-link--highlight:hover,
.header__nav-link--highlight:focus {
    background-color: #dc2626;
    color: #fff;
}

.header__menu-toggle {
    display: none;
    padding: 8px;
}

/* ==========================================================================
   3. Hero
   ========================================================================== */
.hero {
    padding: 80px 16px 60px;
    background: linear-gradient(170deg, #1e1212 0%, #120a0a 50%, #1a0808 100%);
    border-bottom: 3px solid #dc2626;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(220, 38, 38, 0.15);
    border: 1px solid #dc2626;
    color: #fbbf24;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero__badge-icon {
    flex-shrink: 0;
}

.hero__title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f0e8e8 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c4b8b8;
    margin-bottom: 32px;
    max-width: 560px;
}

.hero__cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Trust Card --- */
.hero__trust-card {
    background-color: #1e1212;
    border: 2px solid #dc2626;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 16px 48px rgba(220, 38, 38, 0.15), 0 0 40px rgba(220, 38, 38, 0.08);
}

.hero__trust-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__trust-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero__trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.hero__trust-icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(220, 38, 38, 0.1);
    border-radius: 10px;
}

.hero__trust-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #f0e8e8;
    margin-bottom: 2px;
}

.hero__trust-desc {
    font-size: 0.85rem;
    color: #a09898;
}

/* ==========================================================================
   4. Casino Toplist
   ========================================================================== */
.toplist {
    padding: 80px 16px;
    background-color: #120a0a;
}

.toplist__container {
    max-width: 900px;
    margin: 0 auto;
}

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

.toplist__title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: #f0e8e8;
}

.toplist__subtitle {
    font-size: 1.05rem;
    color: #a09898;
}

/* --- Casino Card --- */
.casino-card {
    background-color: #1e1212;
    border: 2px solid #2a1a1a;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.casino-card:hover {
    border-color: #dc2626;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.2);
    transform: translateY(-4px);
}

.casino-card--featured {
    border-color: #dc2626;
    background: linear-gradient(135deg, #1e1212 0%, rgba(220, 38, 38, 0.05) 100%);
    box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.3), 0 12px 40px rgba(220, 38, 38, 0.15);
}

.casino-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #fbbf24, #dc2626);
}

.casino-card__rank {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.casino-card__rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #dc2626;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    border-radius: 8px;
}

.casino-card__rank-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fbbf24;
}

.casino-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.casino-card__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.casino-card__logo {
    flex-shrink: 0;
}

.casino-card__name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f0e8e8;
    margin-bottom: 4px;
}

.casino-card__license {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fbbf24;
}

.casino-card__score {
    display: flex;
    align-items: baseline;
    gap: 2px;
    background-color: rgba(220, 38, 38, 0.15);
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 10px 18px;
}

.casino-card__score-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: #dc2626;
    line-height: 1;
}

.casino-card__score-max {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #a09898;
}

.casino-card__bonus {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12) 0%, rgba(251, 191, 36, 0.08) 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 20px;
    text-align: center;
}

.casino-card__bonus-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fbbf24;
    margin-bottom: 6px;
}

.casino-card__bonus-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.casino-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.casino-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #c4b8b8;
}

.casino-card__feature svg {
    flex-shrink: 0;
}

.casino-card__actions {
    margin-bottom: 16px;
}

.casino-card__disclaimer {
    font-size: 0.75rem;
    color: #706868;
    text-align: center;
    line-height: 1.5;
}

.toplist__disclaimer {
    font-size: 0.8rem;
    color: #706868;
    text-align: center;
    margin-top: 16px;
    padding: 20px;
    border: 1px solid #2a1a1a;
    border-radius: 10px;
    line-height: 1.6;
}

/* ==========================================================================
   5. Info Blocks
   ========================================================================== */
.info-blocks {
    padding: 80px 16px;
    background: linear-gradient(180deg, #120a0a 0%, #1a0e0e 100%);
}

.info-blocks__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.info-block {
    background-color: #1e1212;
    border: 1px solid #2a1a1a;
    border-top: 3px solid #dc2626;
    border-radius: 14px;
    padding: 36px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block:hover {
    border-color: #dc2626;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.15);
}

.info-block__icon-wrap {
    margin-bottom: 18px;
}

.info-block__title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #fbbf24;
}

.info-block__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #c4b8b8;
}

/* ==========================================================================
   6. Methodology
   ========================================================================== */
.methodology {
    padding: 80px 16px;
    background-color: #120a0a;
    border-top: 2px solid #1e1212;
}

.methodology__container {
    max-width: 1100px;
    margin: 0 auto;
}

.methodology__title {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 14px;
}

.methodology__intro {
    font-size: 1.05rem;
    color: #a09898;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.methodology__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.methodology__card {
    background-color: #1e1212;
    border: 1px solid #2a1a1a;
    border-radius: 14px;
    padding: 32px;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.methodology__card:hover {
    border-color: #dc2626;
    transform: translateY(-2px);
}

.methodology__card-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: rgba(220, 38, 38, 0.2);
    margin-bottom: 12px;
    line-height: 1;
}

.methodology__card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 10px;
}

.methodology__card-text {
    font-size: 0.9rem;
    color: #c4b8b8;
    line-height: 1.7;
}

.methodology__disclosure {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: #1e1212;
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 24px;
}

.methodology__disclosure svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.methodology__disclosure p {
    font-size: 0.85rem;
    color: #c4b8b8;
    line-height: 1.7;
}

.methodology__disclosure strong {
    color: #fbbf24;
}

/* ==========================================================================
   7. FAQ
   ========================================================================== */
.faq {
    padding: 80px 16px;
    background: linear-gradient(180deg, #120a0a 0%, #1a0e0e 100%);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__title {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

.faq__item {
    border: 1px solid #2a1a1a;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background-color: #1e1212;
    transition: border-color 0.3s ease;
}

.faq__item:hover {
    border-color: #dc2626;
}

.faq__question {
    font-size: 1rem;
}

.faq__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #f0e8e8;
    transition: color 0.2s ease;
}

.faq__toggle:hover {
    color: #fbbf24;
}

.faq__toggle[aria-expanded="true"] .faq__chevron {
    transform: rotate(180deg);
}

.faq__chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__answer {
    padding: 0 24px 20px;
}

.faq__answer p {
    font-size: 0.95rem;
    color: #c4b8b8;
    line-height: 1.8;
}

/* ==========================================================================
   8. CTA Section
   ========================================================================== */
.cta-section {
    padding: 80px 16px;
    background-color: #120a0a;
    text-align: center;
    border-top: 2px solid #1e1212;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section__container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section__icon {
    margin-bottom: 24px;
}

.cta-section__title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: #dc2626;
}

.cta-section__text {
    font-size: 1.05rem;
    color: #a09898;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ==========================================================================
   9. Footer
   ========================================================================== */
.footer {
    background-color: #0d0606;
    border-top: 3px solid #dc2626;
    padding: 60px 16px 0;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2a1a1a;
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #f0e8e8;
    margin-bottom: 16px;
}

.footer__logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #f0e8e8;
}

.footer__logo-accent {
    color: #dc2626;
}

.footer__brand-desc {
    font-size: 0.85rem;
    color: #a09898;
    line-height: 1.7;
}

.footer__heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fbbf24;
    margin-bottom: 18px;
}

.footer__links {
    /* column container */
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    font-size: 0.9rem;
    color: #a09898;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer__link:hover,
.footer__link:focus {
    color: #dc2626;
    padding-left: 6px;
}

.footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__badge {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.footer__badge:hover {
    opacity: 0.8;
}

.footer__age-badge {
    margin-top: 8px;
}

.footer__regulatory {
    /* column container */
}

.footer__disclaimer {
    padding: 24px 0;
    border-bottom: 1px solid #2a1a1a;
}

.footer__disclaimer p {
    font-size: 0.78rem;
    color: #706868;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer__bottom {
    padding: 20px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.78rem;
    color: #504848;
}

/* ==========================================================================
   10. Cookie Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #1e1212;
    border-top: 2px solid #dc2626;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    padding: 20px 16px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie-banner__icon {
    flex-shrink: 0;
}

.cookie-banner__text {
    flex: 1;
    font-size: 0.88rem;
    color: #c4b8b8;
    min-width: 200px;
}

.cookie-banner__link {
    color: #fbbf24;
    text-decoration: underline;
}

.cookie-banner__link:hover {
    color: #dc2626;
}

/* ==========================================================================
   11. Subpage Content (shared styles for subpages)
   ========================================================================== */
.page-content {
    padding: 60px 16px 80px;
    min-height: 60vh;
}

.page-content__container {
    max-width: 800px;
    margin: 0 auto;
}

.page-content__header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(220, 38, 38, 0.15);
}

.page-content__title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-content__subtitle {
    color: #a09898;
    font-size: 1.05rem;
}

.page-content__body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #f0e8e8;
}

.page-content__body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #fca5a5;
}

.page-content__body p {
    color: #b0a0a0;
    margin-bottom: 16px;
    line-height: 1.8;
}

.page-content__body ul,
.page-content__body ol {
    color: #b0a0a0;
    margin-bottom: 16px;
    padding-left: 1.5em;
    list-style: disc;
}

.page-content__body li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.page-content__body a {
    color: #fca5a5;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-content__body a:hover {
    color: #dc2626;
}

.page-content__body blockquote {
    border-left: 4px solid #dc2626;
    background-color: #1e1212;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #b0a0a0;
}

/* ==========================================================================
   12. Responsive — Tablet (1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__trust-card {
        max-width: 480px;
    }

    .info-blocks__container {
        grid-template-columns: 1fr;
    }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer__brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* ==========================================================================
   13. Responsive — Mobile (768px)
   ========================================================================== */
@media (max-width: 768px) {
    .header__nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background-color: rgba(18, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 2px solid #dc2626;
        padding: 16px;
        z-index: 999;
    }

    .header__nav--open {
        display: block;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .header__nav-link {
        display: block;
        width: 100%;
        padding: 12px 16px;
    }

    .header__menu-toggle {
        display: block;
    }

    .hero {
        padding: 50px 16px 40px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__cta-group {
        flex-direction: column;
    }

    .hero__cta-group .btn {
        width: 100%;
        text-align: center;
    }

    .toplist__title {
        font-size: 1.6rem;
    }

    .casino-card {
        padding: 24px;
    }

    .casino-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .casino-card__bonus-text {
        font-size: 1.15rem;
    }

    .info-block {
        padding: 28px;
    }

    .faq__title,
    .methodology__title {
        font-size: 1.6rem;
    }

    .faq__toggle {
        padding: 16px 20px;
        font-size: 0.92rem;
    }

    .faq__answer {
        padding: 0 20px 16px;
    }

    .cta-section__title {
        font-size: 1.5rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   14. Responsive — Small Mobile (480px)
   ========================================================================== */
@media (max-width: 480px) {
    .hero__title {
        font-size: 1.45rem;
    }

    .casino-card__name {
        font-size: 1.25rem;
    }

    .casino-card__score-value {
        font-size: 1.6rem;
    }

    .casino-card__bonus-text {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .age-banner__text {
        font-size: 0.72rem;
    }
}

/* ==========================================================================
   15. Print Styles
   ========================================================================== */
@media print {
    .age-banner,
    .header,
    .cookie-banner,
    .cta-section {
        display: none !important;
    }

    body {
        background: #fff;
        color: #111;
    }

    .casino-card {
        border: 1px solid #ccc;
        box-shadow: none;
        break-inside: avoid;
    }
}

/* ==========================================================================
   16. Visual Richness — Casino Atmosphere Enhancements
   Appended decorative CSS. Does NOT modify any existing rules above.
   ========================================================================== */

/* --- 1. Hero: background image with dark overlay --- */
.hero {
    background:
        linear-gradient(170deg, rgba(30, 18, 18, 0.92) 0%, rgba(18, 10, 10, 0.95) 50%, rgba(26, 8, 8, 0.93) 100%),
        url('https://images.unsplash.com/photo-1745473383212-59428c1156bc?w=1920&q=80') center center / cover no-repeat;
}

/* --- 2. Floating card suit symbols on hero via a wrapper pseudo-element ---
   .hero::before and ::after are taken, so we use .hero__container::before --- */
.hero__container::before {
    content: '\2660  \2665  \2666  \2663  \2660  \2665  \2666  \2663  \2660  \2665';
    position: absolute;
    top: -40px;
    left: -60px;
    right: -60px;
    bottom: -40px;
    font-size: 8rem;
    line-height: 1.6;
    letter-spacing: 0.4em;
    color: #dc2626;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    word-break: break-all;
    overflow: hidden;
    white-space: normal;
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__container > * {
    position: relative;
    z-index: 1;
}

/* --- 3. Toplist section: radial glow spots behind cards --- */
.toplist {
    position: relative;
    overflow: hidden;
}

.toplist::before {
    content: '';
    position: absolute;
    top: 120px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.toplist::after {
    content: '';
    position: absolute;
    bottom: 80px;
    right: -120px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.toplist__container {
    position: relative;
    z-index: 1;
}

/* --- 4. Info blocks: subtle gradient mesh with accent colors --- */
.info-blocks {
    position: relative;
    overflow: hidden;
}

.info-blocks::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.info-blocks::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.info-blocks__container {
    position: relative;
    z-index: 1;
}

/* --- 5. Methodology: decorative diamond character --- */
.methodology {
    position: relative;
    overflow: hidden;
}

.methodology::before {
    content: '\2666';
    position: absolute;
    top: 60px;
    right: 40px;
    font-size: 18rem;
    color: #dc2626;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

.methodology::after {
    content: '\2666';
    position: absolute;
    bottom: 40px;
    left: 30px;
    font-size: 12rem;
    color: #fbbf24;
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

.methodology__container {
    position: relative;
    z-index: 1;
}

/* --- 6. CTA section: background image with gradient overlay ---
   .cta-section::before is taken, so we layer via the background property --- */
.cta-section {
    background:
        linear-gradient(180deg, rgba(18, 10, 10, 0.93) 0%, rgba(18, 10, 10, 0.88) 50%, rgba(18, 10, 10, 0.95) 100%),
        url('https://images.unsplash.com/photo-1517232115160-ff93364542dd?w=1200&q=80') center center / cover no-repeat;
}

/* Add a decorative spade on CTA via ::after (which is free) */
.cta-section::after {
    content: '\2660';
    position: absolute;
    bottom: 20px;
    left: 40px;
    font-size: 14rem;
    color: #dc2626;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

/* --- 7. Card hover shine effect (diagonal gradient sweep) --- */
.casino-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(251, 191, 36, 0.04) 40%,
        rgba(220, 38, 38, 0.06) 50%,
        rgba(251, 191, 36, 0.04) 60%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
    transition: left 0.6s ease;
}

.casino-card:hover::after {
    left: 120%;
}

/* Ensure card content sits above the shine */
.casino-card > * {
    position: relative;
    z-index: 1;
}

/* --- 8. Footer: subtle radial gradient glows --- */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.footer__container {
    position: relative;
    z-index: 1;
}

/* --- 9. FAQ section: decorative spade character --- */
.faq {
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '\2660';
    position: absolute;
    top: 30px;
    left: 20px;
    font-size: 16rem;
    color: #dc2626;
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

.faq::after {
    content: '\2663';
    position: absolute;
    bottom: 40px;
    right: 30px;
    font-size: 10rem;
    color: #fbbf24;
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

.faq__container {
    position: relative;
    z-index: 1;
}

/* --- 10. Score badge: accent glow box-shadow --- */
.casino-card__score {
    box-shadow:
        0 0 16px rgba(220, 38, 38, 0.25),
        0 0 40px rgba(220, 38, 38, 0.1);
}

/* --- 11. Mobile: hide decorative pseudo-elements at 768px and below --- */
@media (max-width: 768px) {
    .hero__container::before,
    .toplist::before,
    .toplist::after,
    .info-blocks::before,
    .info-blocks::after,
    .methodology::before,
    .methodology::after,
    .cta-section::after,
    .footer::before,
    .footer::after,
    .faq::before,
    .faq::after {
        display: none !important;
    }
}

/* ===== Feature Visual Block ===== */
.feature-visual {
  padding: 80px 0;
  position: relative;
}

.feature-visual__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.feature-visual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-visual__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15), 0 4px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.feature-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 340px;
}

.feature-visual__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #f0e8e8;
  margin: 16px 0;
  line-height: 1.3;
}

.feature-visual__text {
  color: #a89c9c;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1rem;
}

.feature-visual__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-visual__list li {
  color: #f0e8e8;
  font-weight: 500;
  font-size: 0.95rem;
  padding-left: 28px;
  position: relative;
}

.feature-visual__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #fbbf24;
  font-weight: 700;
}

@media (max-width: 768px) {
  .feature-visual__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-visual__image img {
    min-height: 200px;
    max-height: 260px;
  }

  .feature-visual__title {
    font-size: 1.5rem;
  }
}

/* ===== Parallax Casino Background Sections ===== */
.parallax-casino {
  position: relative;
  height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.parallax-casino--1 {
  background-image: url('https://images.unsplash.com/photo-1676854254200-895a9e6b8c4c?w=1920&q=80');
}

.parallax-casino--2 {
  background-image: url('https://images.unsplash.com/photo-1580088189078-4791d8cfaa78?w=1920&q=80');
}

.parallax-casino__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 10, 10, 0.78) 0%, rgba(18, 10, 10, 0.88) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-casino__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.parallax-casino__content {
  text-align: center;
}

.parallax-casino__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #f0e8e8;
  margin-bottom: 16px;
  line-height: 1.2;
}

.parallax-casino__text {
  color: #c4b8b8;
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .parallax-casino {
    height: 300px;
    background-attachment: scroll;
  }
  .parallax-casino__title {
    font-size: 1.5rem;
  }
}
