:root {
    --primary-color: #0A4D68;
    --secondary-color: #088395;
    --accent-color: #FFC107;
    --accent-color-dark: #e6ac00;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --text-color: #555;
    --border-color: #ddd;
    --success-color: #28a745;
    --error-color: #dc3545;
    --font-family: 'Poppins', sans-serif;
    --container-width: 1100px;
    --header-height: 70px;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

    --primary-color-dark: #073649;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
    --radius-lg: 14px;
    --transition-fast: 0.25s ease;
    --z-overlay: 9999;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

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

ul {
    list-style: none;
}

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

h1,
h2,
h3,
h4 {
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 3rem 0;
}

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


.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--dark-color);
    border-color: var(--accent-color);
}

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

 

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

.btn-outline:hover {
    background-color: #fff;
    color: var(--dark-color);
}
#clear-649 {
     color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
}

.text-link {
    font-weight: 600;
    color: var(--primary-color);
}

.text-link:hover {
    text-decoration: underline;
}


header.site-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
}

header.site-header.sticky {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu li a {
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-menu .nav-auth {
    margin-left: 0.5rem;
}

.nav-menu .nav-auth a.btn {
    padding: 0.4rem 1rem;
}

.btn-play-responsibly {
    padding: 0.5rem 1rem;
    display: none;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    background: transparent;
    border: none;
    color: var(--dark-color);
    cursor: pointer;
    z-index: 1100;
}



.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-about .responsible-notice {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-about .responsible-notice i {
    margin-right: 0.25rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a,
.footer-contact p a {
    color: var(--light-color);
    text-decoration: none;
}

.footer-links ul li a:hover,
.footer-contact p a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}


.hero {
    background: linear-gradient(rgba(10, 77, 104, 0.8), rgba(10, 77, 104, 0.8)), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    height: calc(90vh - var(--header-height));
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

.hero-content h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta .btn {
    margin: 0 0.5rem;
}

.hero-disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    font-weight: 300;
}


.featured-lotteries {
    background: var(--light-color);
}

.featured-lotteries h2,
.how-it-works h2,
.features h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.lottery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lottery-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lottery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.lottery-logo {
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.lottery-logo img {
    width: 100%;
}


.lottery-card h3 {
    margin-bottom: 0.5rem;
}

.lottery-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.section-disclaimer {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: #777;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.step-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}


.features {
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}


.responsible-play {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.responsible-links {
    margin-top: 1.5rem;
}

.responsible-links .text-link {
    margin: 0 1rem;
}


.page-header {
    background: var(--primary-color);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 0.25rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}


.about-flex {
    display: flex;
    gap: 2rem;
}

.about-text {
    flex: 2;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-content: flex-start;
}

.stat-card {
    background: var(--light-color);
    padding: 1rem;
    text-align: center;
    border-radius: var(--border-radius);
}

.stat-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-card h4 {
    margin-bottom: 0.25rem;
}

.stat-card p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}


.contact-flex {
    display: flex;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container {
    flex: 2;
}

.contact-info-sidebar {
    flex: 1;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.contact-info-list {
    margin-top: 1.5rem;
}

.contact-info-list li {
    display: flex;
    margin-bottom: 1rem;
}

.contact-info-list i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-info-list strong {
    color: var(--dark-color);
}

.contact-info-list p {
    font-size: 0.95rem;
    margin: 0;
}


.form-page-bg {
    background-color: var(--light-color);
}

.form-page-main {
    padding: 3rem 0;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-container h2 {
    text-align: center;
}

.form-container>p {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-family);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    margin-right: 0.5rem;
}

.form-group-checkbox label {
    font-weight: 400;
    font-size: 0.9rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-options .form-group-checkbox {
    margin: 0;
}

.form-footer-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 1rem;
    margin-bottom: 0;
}


.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    display: block;
    margin-top: 0.25rem;
}

.success-message {
    color: var(--success-color);
    font-size: 0.9rem;
}

.form-control.is-invalid {
    border-color: var(--error-color);
}

#form-message-container {
    margin-bottom: 1rem;
    text-align: center;
}

#form-message-container .error-message,
#form-message-container .success-message {
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
}

#form-message-container .error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#form-message-container .success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#terms-error {
    margin-left: 1.75rem;
}


.game-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.tab-link {
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-color);
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}

.tab-link:hover {
    color: var(--primary-color);
}

.tab-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.game-content {
    display: none;
}

.game-content.active {
    display: block;
}

.ticket-builder {
    display: flex;
    gap: 2rem;
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.number-picker {
    flex: 2;
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.number-btn {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    transition: all 0.2s ease;
}

.number-btn:hover {
    background: #f0f0f0;
}

.number-btn.selected {
    background: var(--accent-color);
    color: var(--dark-color);
    border-color: var(--accent-color-dark);
}

.picker-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.picker-controls .btn {
    padding: 0.5rem 1rem;
}

.picker-controls .btn i {
    margin-right: 0.5rem;
}

.number-picker .error-message {
    font-weight: 600;
}

.ticket-summary {
    flex: 1;
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.summary-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.selected-numbers-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin: 0.5rem 0 1rem;
}

.selected-numbers-list li {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-color);
}

.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    margin: 1rem 0;
}

.price-display strong {
    color: var(--dark-color);
}


.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 2.5rem;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.modal-close {
    color: #aaa;
    position: absolute;
    top: 0.75rem;
    right: 1.25rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: black;
}

.modal-icon-success {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.modal-disclaimer {
    font-size: 0.9rem;
    background: var(--light-color);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    text-align: left;
}

.modal-disclaimer strong {
    color: var(--dark-color);
}



@media (max-width: 992px) {

    .lottery-grid,
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-about {
        grid-column: 1 / -1;
    }

    .ticket-builder {
        flex-direction: column;
    }

    .ticket-summary {
        position: static;
        top: auto;
    }

    .number-grid {
        grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    }

    .number-btn {
        padding: 0.25rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .btn-play-responsibly {
        display: none;
    }


    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: static;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 0;
        font-size: 1.25rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li a.active,
    .nav-menu li a:hover {
        border-bottom-color: transparent;
        color: var(--primary-color);
    }

    .nav-menu .nav-auth {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
        width: 100%;
    }

    .nav-menu .nav-auth a {
        border: none;
        padding: 0.5rem 0;
    }

    .nav-menu .nav-auth a.btn {
        text-align: center;
        padding: 0.75rem;
        background: var(--primary-color);
        color: #fff;
    }

    .lottery-grid,
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .about-flex {
        flex-direction: column;
    }

    .contact-flex {
        flex-direction: column;
    }

    .modal-content {
        margin: 20% auto;
    }
}

@media (min-width: 769px) {
    .btn-play-responsibly {
        display: inline-block;
    }

    .nav-menu .nav-auth {
        display: flex;
        align-items: center;
    }

    .nav-menu .nav-auth a {
        border: none;
    }

    .nav-menu .nav-auth a:not(.btn) {
        margin-right: 1.5rem;
    }
}

.footer-imgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-imgs img {
    padding: 12px;
    margin: 12px;
    height: 55px;
    background: white;
    border-radius: 10px;
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(10, 77, 104, 0.9), rgba(2, 10, 18, 0.98));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: var(--z-overlay);
    padding: 16px;
}

.age-overlay__content {
    background: rgba(15, 24, 35, 0.98);
    border-radius: 18px;
    padding: 24px 24px 20px;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-soft);
    color: var(--text-color);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.age-overlay__content h2 {
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.age-overlay__content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #d1e2ec;
    margin-bottom: 20px;
}

.age-overlay__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}



.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    max-width: 640px;
    width: calc(100% - 32px);
    background: rgba(10, 77, 104, 0.96);
    color: var(--accent-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 18px 20px 16px;
    display: none;
    z-index: var(--z-overlay);
    backdrop-filter: blur(14px);
}

.cookie-banner__text h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    color: #e6f4ff;
}

.cookie-banner__text p {
    margin: 0 0 14px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #e6f4ff;
}

.cookie-banner__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}



.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(1, 6, 10, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: var(--z-overlay);
    padding: 16px;
}

.cookie-modal__content {
    background: #0b1520;
    color: var(--accent-color);
    border-radius: 18px;
    max-width: 600px;
    width: 100%;
    padding: 20px 22px 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-modal__content h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.cookie-modal__content p {
    font-size: 0.9rem;
    color: #c7d9e4;
    margin-bottom: 14px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-option:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.cookie-option strong {
    font-size: 0.95rem;
}

.cookie-option p {
    margin: 4px 0 0;
}

.cookie-option--disabled {
    opacity: 0.7;
}

.cookie-modal__buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}



 
.btn-link {
    font-family: inherit;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 8px 18px;
    transition: background-color var(--transition-fast),
        color var(--transition-fast),
        transform 0.12s ease,
        box-shadow var(--transition-fast),
        border-color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

 
 

.btn-link {
    background: transparent;
    color: #cfe9ff;
    padding-inline: 0;
    border-radius: 0;
    border: none;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn-link:hover {
    color: #ffffff;
}



.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #1f2a37;
    transition: 0.2s;
    border-radius: 999px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.2s;
    border-radius: 50%;
}

.switch input:checked+.slider {
    background-color: #0A4D68;
}

.switch input:checked+.slider:before {
    transform: translateX(22px);
}



.cookie-floating-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: calc(var(--z-overlay) - 1);
    background: rgba(10, 77, 104, 0.95);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    display: none;
}

.cookie-floating-btn:hover {
    background: var(--primary-color-dark);
}



@media (max-width: 480px) {
    .age-overlay__content {
        padding: 20px 16px 16px;
    }

    .cookie-banner {
        padding: 16px 14px 12px;
    }

    .cookie-banner__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}