:root {
    --primary-color: #1a237e;
    --secondary-color: #283593;
    --accent-color: #ffd54f;
    --text-color: #333;
    --light-bg: #e8eaf6;
    --card-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    --pattern-color1: rgba(40, 53, 147, 0.1);
    --pattern-color2: rgba(26, 35, 126, 0.15);
    --card-bg: #121858;
    --card-text: #ffffff;
    --feature-text: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Arial', sans-serif;
}

a {
    text-decoration: none;
    display: inline-block;
}

/* Pattern Backgrounds */
.pattern-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--light-bg);
    background-image: 
        radial-gradient(var(--pattern-color1) 2px, transparent 2px),
        radial-gradient(var(--pattern-color2) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.8;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.warning-banner {
    background-color: #ffebee;
    color: #c62828;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.warning-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 150%;
    }
}

header {
    background-color: white;
    padding: 1rem 2rem;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 10;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    right: -10px;
    top: -10px;
    opacity: 0.2;
    z-index: -1;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.sites-list {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
    position: relative;
}

.sites-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--secondary-color), transparent);
    transform: translateX(-50%);
    opacity: 0.2;
    display: none;
}

@media (min-width: 1200px) {
    .sites-list::before {
        display: block;
    }
}

.site-card {
    background: var(--card-bg);
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.site-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pattern-color1), var(--pattern-color2));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.site-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 30px rgba(0, 0, 0, 0.3);
}

.site-card:hover::before {
    opacity: 1;
}

.rank {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.rank::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.site-info {
    display: grid;
    grid-template-columns: 200px 1fr 300px;
    gap: 2rem;
    padding: 1.5rem;
    align-items: center;
}

.site-logo {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.site-card:nth-child(2) .site-logo {
    background-color: rgba(255, 255, 255, 0.9);
}

.site-card:hover .site-logo {
    transform: scale(1.05);
}

.site-logo img {
    max-width: 100%;
    height: auto;
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 40px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.site-details h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.site-details h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, var(--accent-color), transparent);
}

.bonus {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: bold;
    margin: 1.2rem 0;
    padding: 10px 15px;
    background-color: rgba(255, 213, 79, 0.15);
    border-radius: 8px;
    display: inline-block;
}

.features {
    list-style: none;
}

.features li {
    margin-bottom: 0.8rem;
    color: var(--feature-text);
    position: relative;
    padding-left: 25px;
    transition: transform 0.2s ease;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.features li:hover {
    transform: translateX(5px);
}

.rating-section {
    text-align: center;
    position: relative;
}

.rating {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.rating::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(255, 213, 79, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.register-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.4);
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.register-btn:hover {
    background-color: #ffc400;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.register-btn:hover::before {
    left: 100%;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(255, 255, 255, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.05) 87.5%, rgba(255, 255, 255, 0.05)),
        linear-gradient(150deg, rgba(255, 255, 255, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.05) 87.5%, rgba(255, 255, 255, 0.05)),
        linear-gradient(30deg, rgba(255, 255, 255, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.05) 87.5%, rgba(255, 255, 255, 0.05)),
        linear-gradient(150deg, rgba(255, 255, 255, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.05) 87.5%, rgba(255, 255, 255, 0.05));
    background-size: 80px 140px;
    opacity: 0.5;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-badges {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badges img {
    height: 50px;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

.footer-links {
    margin-block: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .site-info {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .site-logo {
        margin: 0 auto;
        max-width: 200px;
    }

    .features {
        display: inline-block;
        text-align: left;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .site-card {
        margin: 1rem;
    }

    .register-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .rank {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -10px;
        left: -10px;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 100;
    outline: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Mobile Sidebar Styles */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, #fff 0%, #f0f5ff 100%);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(var(--pattern-color1) 2px, transparent 2px),
        radial-gradient(var(--pattern-color2) 2px, transparent 2px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-logo {
    height: 40px;
}

.close-sidebar {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    outline: none;
}

.close-sidebar span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.close-sidebar span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-sidebar span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    padding: 30px 0;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background-color: rgba(26, 35, 126, 0.2);
}

.sidebar-links a:hover::before,
.sidebar-links a.active::before {
    transform: scaleY(1);
}

.link-icon {
    margin-right: 15px;
    font-size: 1.3rem;
    min-width: 24px;
    text-align: center;
}

.sidebar-footer {
    margin-top: 30px;
    text-align: center;
}

.sidebar-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 35, 126, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.sidebar-warning {
    font-size: 0.8rem;
    color: #c62828;
    margin-top: 15px;
}

/* Show sidebar when active */
body.sidebar-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
}

body.sidebar-open .mobile-sidebar {
    right: 0;
}

/* Disable scroll when sidebar is open */
body.sidebar-open {
    overflow: hidden;
}

/* Animation for menu toggle */
body.sidebar-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.sidebar-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.sidebar-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Show mobile menu toggle on smaller screens */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* Cookie Consent Modal */
.cookie-modal {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 20px 20px;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.cookie-modal.active {
    bottom: 0;
}

.cookie-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(100px);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    margin-bottom: 20px;
}

.cookie-modal.active .cookie-content {
    transform: translateY(0);
}

.cookie-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.cookie-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-body {
    padding: 20px;
}

.cookie-options {
    margin-top: 15px;
}

.cookie-option {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cookie-option:last-child {
    border-bottom: none;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-right: 15px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--accent-color);
}

input:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.option-info h4 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.option-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.cookie-footer {
    padding: 15px 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn.primary {
    background-color: var(--accent-color);
    color: white;
}

.cookie-btn.secondary {
    background-color: #f1f1f1;
    color: #333;
}

.cookie-btn:not(.primary):not(.secondary) {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid #ddd;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.age-modal.active {
    opacity: 1;
    visibility: visible;
}

.age-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.age-modal.active .age-content {
    transform: scale(1);
}

.age-header {
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    position: relative;
}

.age-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.age-logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.age-icon {
    width: 40px;
    height: 40px;
}

.age-body {
    padding: 25px;
}

.age-warning {
    font-weight: 600;
    color: #e53935;
    font-size: 1.1rem;
    margin: 20px 0;
    text-align: center;
}

.age-question {
    text-align: center;
    margin: 30px 0;
}

.age-question p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.age-btn {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.age-btn:hover {
    transform: translateY(-3px);
}

.age-btn.primary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.age-btn.secondary {
    background-color: #f1f1f1;
    color: #333;
}

.age-disclaimer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.age-disclaimer a {
    color: var(--secondary-color);
    text-decoration: none;
}

.age-disclaimer a:hover {
    text-decoration: underline;
}

.jeu-responsable {
    font-style: italic;
    margin-top: 10px;
    font-size: 0.85rem;
}

/* Media Queries for modals */
@media (max-width: 768px) {
    .cookie-footer {
        flex-direction: column-reverse;
    }

    .cookie-btn, .age-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .age-buttons {
        flex-direction: column;
    }
} 