/* ========================================
   LUCKYVEI.COM — MAIN STYLESHEET
   Fonts: Space Grotesk + Inter
   Accent: Red, Pink, Purple
   Background: White
   ======================================== */

/* --- CSS VARIABLES --- */
:root {
    --color-red: #d6264d;
    --color-pink: #e84393;
    --color-purple: #8b2fc9;
    --color-deep-purple: #6c1fa1;
    --color-white: #ffffff;
    --color-off-white: #faf8fc;
    --color-light-grey: #f4f0f7;
    --color-grey: #6b6b7b;
    --color-dark: #1a1a2e;
    --color-border: #e8e0f0;

    --gradient-accent: linear-gradient(135deg, var(--color-red) 0%, var(--color-pink) 50%, var(--color-purple) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(214,38,77,0.08) 0%, rgba(139,47,201,0.08) 100%);
    --gradient-card: linear-gradient(180deg, var(--color-white) 0%, var(--color-off-white) 100%);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(26,26,46,0.06);
    --shadow-md: 0 4px 20px rgba(26,26,46,0.08);
    --shadow-lg: 0 8px 40px rgba(26,26,46,0.12);
    --shadow-glow: 0 0 30px rgba(214,38,77,0.15);

    --max-width: 1200px;
    --header-height: 72px;
}

/* --- 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-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-white);
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--color-purple);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-red);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-dark);
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.85rem; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

li { margin-bottom: 0.4rem; }

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

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

/* --- HEADER --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo svg {
    width: 36px;
    height: 36px;
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

.header-nav a:hover {
    color: var(--color-red);
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,46,0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    z-index: 1005;
    flex-direction: column;
    padding: 32px 24px;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    display: flex;
    transform: translateX(0);
}

.mobile-nav a {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    transition: color 0.2s ease;
}

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

.mobile-nav a:hover {
    color: var(--color-red);
}

@media (max-width: 767px) {
    .header-nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

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

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

.intro-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.intro-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-purple);
    background: rgba(139,47,201,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.intro-content h1 {
    margin-bottom: 20px;
    font-size: 2.8rem;
    line-height: 1.2;
}

.intro-subtitle {
    font-size: 1.12rem;
    color: var(--color-grey);
    line-height: 1.75;
    margin-bottom: 32px;
}

.intro-mission {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: left;
    max-width: 640px;
    margin: 0 auto;
}

.mission-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.intro-mission p {
    font-size: 0.95rem;
    color: var(--color-grey);
    margin: 0;
    line-height: 1.65;
}

/* --- RATING SECTION --- */
.rating-section {
    padding: 70px 0;
}

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

.section-header h2 {
    font-size: 2.2rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--color-grey);
    margin-top: 8px;
}

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

/* OFFER CARD */
.offer-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.25s ease;
    position: relative;
}

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

.offer-rank {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gradient-accent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    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 20px 60px;
}

.offer-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 10px;
    min-height: 80px;
}

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

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

.offer-name {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.offer-bonus {
    font-size: 0.95rem;
    color: var(--color-grey);
    line-height: 1.5;
}

.offer-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.score-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.score-circle::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--color-white);
}

.score-value {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-purple);
    background: transparent;
    border: 2px solid var(--color-purple);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-see-more:hover {
    background: var(--color-purple);
    color: var(--color-white);
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--gradient-accent);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    text-decoration: none;
    transition: opacity 0.25s ease, box-shadow 0.25s ease;
}

.btn-visit:hover {
    opacity: 0.9;
    box-shadow: var(--shadow-glow);
    color: var(--color-white);
}

.btn-visit.full-width {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
}

.offer-disclaimer {
    font-size: 0.78rem;
    color: var(--color-grey);
    background: var(--color-light-grey);
    padding: 12px 28px 12px 60px;
    border-top: 1px solid var(--color-border);
    line-height: 1.5;
}

/* Responsive offer cards */
@media (max-width: 1023px) {
    .offer-body {
        grid-template-columns: 120px 1fr;
        gap: 16px;
        padding: 24px 20px 20px 50px;
    }
    .offer-score {
        justify-self: start;
    }
    .offer-actions {
        flex-direction: row;
        min-width: unset;
    }
    .offer-disclaimer {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .offer-body {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px 20px 20px;
    }
    .offer-logo-wrap {
        justify-self: center;
        max-width: 160px;
    }
    .offer-score {
        justify-self: center;
    }
    .offer-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .offer-disclaimer {
        text-align: center;
        padding: 12px 20px;
    }
}

/* --- PRE-FOOTER SECTION --- */
.pre-footer-section {
    padding: 60px 0;
    background: var(--color-light-grey);
    border-top: 3px solid transparent;
    border-image: var(--gradient-accent) 1;
}

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

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

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

.pre-footer-block p {
    font-size: 0.88rem;
    color: var(--color-grey);
    line-height: 1.7;
    margin-bottom: 0;
}

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

.regulators-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    background: #1a1a2e;
    border-radius: 10px;
    padding: 20px 0;
}

.regulators-row a {
    display: flex;
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

.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;
    }
}

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

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

.page-hero p {
    font-size: 1.1rem;
    color: var(--color-grey);
}

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

.content-main {
    max-width: 860px;
    margin: 0 auto;
}

.content-main h2 {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.content-main h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

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

.value-card {
    background: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: box-shadow 0.25s ease;
}

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

.value-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 14px;
}

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

.value-card p {
    font-size: 0.9rem;
    color: var(--color-grey);
    margin-bottom: 0;
}

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

/* CRITERIA LIST */
.criteria-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* --- CONTACT LAYOUT --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
}

.contact-info-panel h2 {
    border: none;
    padding: 0;
    margin-top: 0;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--color-dark);
}

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

.contact-note {
    font-size: 0.88rem;
    color: var(--color-grey);
    font-style: italic;
    margin-top: 20px;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark);
    background: var(--color-off-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(139,47,201,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--color-red);
}

.field-error {
    display: block;
    font-size: 0.8rem;
    color: var(--color-red);
    margin-top: 4px;
    min-height: 1rem;
}

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

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

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    flex: 1;
}

.form-checkbox .field-error {
    width: 100%;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--gradient-accent);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 36px;
    cursor: pointer;
    transition: opacity 0.25s ease, box-shadow 0.25s ease;
    min-width: 180px;
}

.btn-submit:hover {
    opacity: 0.9;
    box-shadow: var(--shadow-glow);
}

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

.btn-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.form-success {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-top: 20px;
}

.form-success svg {
    flex-shrink: 0;
    color: #10b981;
}

.form-success p {
    font-size: 0.95rem;
    color: #065f46;
    margin: 0;
}

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

/* --- LEGAL PAGE --- */
.legal-page .legal-content {
    max-width: 860px;
    margin: 0 auto;
}

.legal-date {
    font-size: 0.9rem;
    color: var(--color-grey);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-content h2 {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content code {
    font-size: 0.88rem;
    background: var(--color-light-grey);
    padding: 2px 8px;
    border-radius: 4px;
}

/* --- RESPONSIBLE GAMING — RESOURCES --- */
.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.resource-card {
    background: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: box-shadow 0.25s ease;
}

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

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

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

.resource-card p {
    font-size: 0.88rem;
    color: var(--color-grey);
    margin-bottom: 12px;
}

.resource-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-purple);
}

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

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

.back-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-purple);
    margin-bottom: 24px;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.offer-hero-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.offer-hero-logo {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.offer-hero-info h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.offer-hero-score {
    display: flex;
    align-items: center;
    gap: 12px;
}

.score-circle.large {
    width: 72px;
    height: 72px;
}

.score-circle.large .score-value {
    font-size: 1.4rem;
}

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

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

.offer-details-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.offer-description h2 {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.offer-details-card {
    background: var(--color-off-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.offer-details-card h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    text-align: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.detail-row:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--color-grey);
    font-weight: 500;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: right;
}

.offer-page-disclaimer {
    font-size: 0.8rem;
    color: var(--color-grey);
    text-align: center;
    margin-top: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

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

/* --- FOOTER --- */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-brand-logo svg {
    width: 32px;
    height: 32px;
}

.footer-brand-logo span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 16px;
}

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

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

.footer-nav-list a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-list a:hover {
    color: var(--color-pink);
}

.footer-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

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

/* Footer regulators */
.footer-regulators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-regulators a {
    opacity: 0.5;
    transition: opacity 0.25s ease;
}

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

.footer-regulators img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-18-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--color-red);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-red);
    flex-shrink: 0;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* Footer disclaimer */
.footer-disclaimer {
    padding: 24px 0;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --- AGE VERIFICATION POPUP --- */
.age-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,26,46,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.age-popup-box {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

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

.age-popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-red);
}

.age-popup-box h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.age-popup-box p {
    font-size: 0.95rem;
    color: var(--color-grey);
    line-height: 1.65;
    margin-bottom: 28px;
}

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

.age-popup-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--gradient-accent);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    cursor: pointer;
    transition: opacity 0.25s ease, box-shadow 0.25s ease;
}

.age-popup-confirm:hover {
    opacity: 0.9;
    box-shadow: var(--shadow-glow);
}

.age-popup-exit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-grey);
    background: transparent;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 32px;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.age-popup-exit:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

@media (max-width: 480px) {
    .age-popup-box {
        padding: 36px 24px;
    }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: rgba(255,255,255,0.85);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
}

.cookie-banner-text a {
    color: var(--color-pink);
    text-decoration: underline;
}

.cookie-banner-accept {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--gradient-accent);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 24px;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.25s ease;
}

.cookie-banner-accept:hover {
    opacity: 0.9;
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* --- RESPONSIVE TYPOGRAPHY --- */
@media (max-width: 767px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.45rem; }
    .intro-content h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.7rem; }
    .page-hero h1 { font-size: 1.9rem; }
    .offer-hero-info h1 { font-size: 1.7rem; }
}

@media (max-width: 320px) {
    .container { padding: 0 16px; }
    h1 { font-size: 1.6rem; }
}