/* ============================================
   TopListaEspana.com — Main Stylesheet
   Font: Plus Jakarta Sans + Space Grotesk
   Accent: Purple | Background: White
   ============================================ */

/* --- CSS Variables --- */
:root {
    --accent: #7B2D8E;
    --accent-light: #9B4FB5;
    --accent-dark: #5A1A6B;
    --accent-pale: #F3E8F9;
    --accent-gradient: linear-gradient(135deg, #7B2D8E 0%, #9B4FB5 50%, #B76FCC 100%);
    --accent-gradient-soft: linear-gradient(135deg, #F3E8F9 0%, #E8D5F0 100%);
    --bg: #FFFFFF;
    --bg-off: #FAFAFA;
    --bg-section: #F7F3F9;
    --text: #1A1A2E;
    --text-light: #555570;
    --text-muted: #8888A0;
    --border: #E8E0ED;
    --border-light: #F0EAF4;
    --shadow-sm: 0 1px 3px rgba(123, 45, 142, 0.06);
    --shadow-md: 0 4px 16px rgba(123, 45, 142, 0.08);
    --shadow-lg: 0 8px 32px rgba(123, 45, 142, 0.12);
    --shadow-card: 0 2px 12px rgba(123, 45, 142, 0.07);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --transition: 0.25s ease;
    --container-max: 1140px;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-dark);
}

ul, ol {
    padding-left: 1.5em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--text);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

/* --- HEADER --- */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
}

.header-logo svg {
    flex-shrink: 0;
}

.header-logo span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-nav a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
    text-decoration: none;
    transition: color var(--transition);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--accent);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile nav */
@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 8px 0;
    }

    .header-nav.open {
        display: flex;
    }

    .header-nav li {
        width: 100%;
    }

    .header-nav a {
        display: block;
        padding: 14px 24px;
        border-bottom: 1px solid var(--border-light);
        font-size: 1rem;
    }

    .header-nav a::after {
        display: none;
    }

    .header-nav li:last-child a {
        border-bottom: none;
    }
}

/* --- INTRO SECTION --- */
.intro-section {
    padding: 80px 0 60px;
    background: var(--accent-gradient-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 45, 142, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.intro-badge {
    display: inline-block;
    background: var(--bg);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.intro-section h1 {
    font-size: 2.6rem;
    font-weight: 800;
    max-width: 720px;
    margin: 0 auto 20px;
    color: var(--text);
}

.intro-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.intro-mission {
    display: inline-flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    max-width: 620px;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.mission-icon {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.intro-mission p {
    font-size: 0.93rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* --- RATING SECTION --- */
.rating-section {
    padding: 70px 0;
    background: var(--bg);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Offer Card — Hexagonal score */
.offer-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
}

.offer-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.offer-rank {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 18px 6px 16px;
    border-radius: 0 0 var(--radius-md) 0;
    z-index: 2;
}

.offer-body {
    display: grid;
    grid-template-columns: 140px 1fr auto auto;
    align-items: center;
    gap: 24px;
    padding: 28px 28px 16px;
}

.offer-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: var(--bg-off);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.offer-logo-wrap img {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

.offer-info {
    min-width: 0;
}

.offer-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.offer-bonus {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.5;
}

.offer-score-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 82px;
    background: var(--accent-gradient);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    color: white;
    text-align: center;
}

.score-number {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 8px;
}

.score-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.offer-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 140px;
}

.btn-see-more {
    display: block;
    text-align: center;
    padding: 10px 20px;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-see-more:hover {
    background: var(--accent-pale);
    color: var(--accent-dark);
}

.btn-operator {
    display: block;
    text-align: center;
    padding: 10px 20px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid var(--accent);
}

.btn-operator:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: white;
}

.offer-disclaimer {
    padding: 10px 28px 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px dashed var(--border-light);
    margin-top: 0;
}

/* Offer card responsive */
@media (max-width: 1023px) {
    .offer-body {
        grid-template-columns: 120px 1fr auto;
        gap: 16px;
    }
    .offer-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .offer-body {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 20px 12px;
        gap: 14px;
    }
    .offer-logo-wrap {
        justify-self: center;
    }
    .offer-score-wrap {
        justify-self: center;
    }
    .offer-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .offer-rank {
        font-size: 0.8rem;
        padding: 5px 14px;
    }
    .offer-disclaimer {
        text-align: center;
        padding: 10px 20px 16px;
    }
}

/* --- PRE-FOOTER SECTION --- */
.pre-footer-section {
    padding: 60px 0;
    background: var(--bg-section);
    border-top: 3px solid var(--accent-pale);
}

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

.pre-footer-block {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
}

.pre-footer-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-dark);
}

.pre-footer-block p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.75;
}

.pre-footer-block a {
    color: var(--accent);
    text-decoration: underline;
}

.regulators-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.regulators-row a {
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.regulators-row a:hover {
    opacity: 1;
}

.regulators-row img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 767px) {
    .pre-footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .regulators-row {
        gap: 18px;
    }
    .regulators-row img {
        height: 38px;
    }
}

/* --- FOOTER --- */
.site-footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.75);
    padding: 0;
}

.footer-main {
    padding: 52px 20px 32px;
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.footer-logo svg {
    flex-shrink: 0;
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.7;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
    color: white;
}

.footer-regulators {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 20px;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    background-color: #E8D5F0;
    border-radius: 10px;
}

.footer-regulators a {
    opacity: 0.5;
    transition: opacity var(--transition);
}

.footer-regulators a:hover {
    opacity: 0.9;
}

.footer-regulators img {
    height: 40px;
    width: auto;
    object-fit: contain;
   
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(255, 0, 0, 0.5);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: rgb(255, 0, 0);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 20px;
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 20px 24px;
    }
    .footer-regulators {
        gap: 16px;
    }
    .footer-regulators img {
        height: 32px;
    }
}

/* --- PAGE HERO --- */
.page-hero {
    padding: 60px 0 40px;
    background: var(--accent-gradient-soft);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* --- CONTENT SECTION --- */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 14px;
    color: var(--accent-dark);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-pale);
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin-bottom: 16px;
    color: var(--text-light);
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.3rem;
}

/* --- VALUES GRID --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0 32px;
}

.value-card {
    background: var(--bg-off);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: box-shadow var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
}

.value-icon {
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.value-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.criteria-list li {
    margin-bottom: 10px;
}

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

/* --- CONTACT PAGE --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 44px;
    align-items: flex-start;
}

.contact-info-panel h2,
.contact-form-panel h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--text);
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 0;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    color: var(--text-light);
}

.contact-detail svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.contact-detail strong {
    display: block;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-detail a {
    color: var(--accent);
}

.contact-note {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 24px;
    padding: 16px;
    background: var(--bg-off);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(123, 45, 142, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--accent);
}

.form-checkbox label {
    font-weight: 400;
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--text-light);
}

.form-checkbox label a {
    color: var(--accent);
    text-decoration: underline;
}

.form-error {
    display: none;
    font-size: 0.8rem;
    color: #d32f2f;
    margin-top: 4px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #d32f2f;
}

.form-group.has-error .form-error {
    display: block;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--transition);
    min-width: 180px;
}

.btn-submit:hover {
    background: var(--accent-dark);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: var(--radius-sm);
    margin-top: 18px;
    color: #2e7d32;
}

.form-success svg {
    flex-shrink: 0;
    color: #2e7d32;
}

.form-success p {
    margin: 0;
    color: #2e7d32;
    font-size: 0.93rem;
    font-weight: 500;
}

@media (max-width: 767px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* --- OFFER HERO --- */
.offer-hero {
    padding: 40px 0 50px;
    background: var(--accent-gradient-soft);
    border-bottom: 1px solid var(--border);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 28px;
    text-decoration: none;
}

.back-link:hover {
    color: var(--accent-dark);
}

.offer-hero-content {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.offer-hero-logo {
    flex-shrink: 0;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.offer-hero-logo img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

.offer-hero-info h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.offer-hero-desc {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.85;
}

@media (max-width: 767px) {
    .offer-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* --- OFFER DETAILS --- */
.offer-details-section {
    padding: 50px 0;
}

.offer-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.detail-card {
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px;
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.detail-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--accent-dark);
}

.offer-cta-area {
    text-align: center;
    margin-bottom: 20px;
}

.btn-operator-large {
    display: inline-block;
    padding: 14px 44px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background var(--transition);
    border: 2px solid var(--accent);
}

.btn-operator-large:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: white;
}

.offer-page-disclaimer {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 16px;
    background: var(--bg-off);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

@media (max-width: 767px) {
    .offer-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 479px) {
    .offer-details-grid {
        grid-template-columns: 1fr;
    }
}

/* --- RESOURCES GRID (Responsible) --- */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 28px 0;
}

.resource-card {
    background: var(--bg-off);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
}

.resource-card img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 14px;
}

.resource-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.resource-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

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

/* --- AGE VERIFICATION POPUP --- */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.92);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-modal {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 48px 44px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.age-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.age-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
}

.age-modal h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.age-modal p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.age-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.age-confirm {
    padding: 14px 24px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--transition);
}

.age-confirm:hover {
    background: var(--accent-dark);
}

.age-exit {
    padding: 12px 24px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.93rem;
    cursor: pointer;
    transition: all var(--transition);
}

.age-exit:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    color: rgba(255, 255, 255, 0.85);
    padding: 18px 24px;
    z-index: 9990;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 0.86rem;
    line-height: 1.6;
    flex: 1;
    min-width: 280px;
}

.cookie-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-accept {
    padding: 10px 28px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
}

.cookie-accept:hover {
    background: var(--accent-light);
}

/* --- GENERAL RESPONSIVE --- */
@media (max-width: 1023px) {
    .intro-section h1 {
        font-size: 2.1rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 767px) {
    .intro-section {
        padding: 50px 0 40px;
    }
    .intro-section h1 {
        font-size: 1.7rem;
    }
    .intro-subtitle {
        font-size: 0.98rem;
    }
    .intro-mission {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .section-title {
        font-size: 1.45rem;
    }
    .page-hero {
        padding: 40px 0 28px;
    }
    .page-hero h1 {
        font-size: 1.7rem;
    }
    .rating-section {
        padding: 44px 0;
    }
    .content-section {
        padding: 40px 0;
    }
    .pre-footer-section {
        padding: 40px 0;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 14px;
    }
    .container {
        padding: 0 14px;
    }
    .intro-section h1 {
        font-size: 1.45rem;
    }
}