@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/nunito-sans-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/nunito-sans-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/space-grotesk-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/space-grotesk-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.age-verification-section {
    background: url('../images/german-flag-bg.webp') center center / cover,
    linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(26, 26, 26, 0.9) 50%,
            rgba(0, 0, 0, 0.95) 100%
    );
    background-blend-mode: soft-light;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.age-verification-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            ellipse at top,
            rgba(255, 206, 0, 0.1) 0%,
            transparent 50%
    );
    pointer-events: none;
}

.age-verification-content {
    width: 100%;
    max-width: 580px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.age-verification-modal {
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.modal-header {
    padding: 32px 32px 16px;
    text-align: center;
    position: relative;
}

.age-badge {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 8px 24px rgba(255, 215, 0, 0.4));
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-body {
    padding: 0 32px 32px;
    text-align: center;
    position: relative;
}

.age-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(255, 215, 0, 0.3);
    letter-spacing: -0.5px;
}

.age-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    opacity: 0.95;
}

.age-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.age-question {
    margin-bottom: 18px;
}

.age-question p {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    opacity: 0.9;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.btn-confirm,
.btn-decline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-confirm::before,
.btn-decline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    transition: left 0.5s;
}

.btn-confirm:hover::before,
.btn-decline:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 22px;
    font-weight: 700;
}

.btn-confirm {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(46, 204, 113, 0.3);
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(46, 204, 113, 0.4);
}

.btn-confirm:active {
    transform: translateY(0);
}

.btn-decline {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.3);
}

.btn-decline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(231, 76, 60, 0.4);
}

.btn-decline:active {
    transform: translateY(0);
}

.modal-footer {
    background: linear-gradient(
            to bottom,
            transparent,
            rgba(0, 0, 0, 0.4)
    );
    padding: 16px 32px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
}

.legal-notice {
    font-size: 12px;
    color: #FFD700;
    font-weight: 600;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.spacer-section {
    height: 100vh;
    background: #000000;
}

.main-content {
    background: #000000;
}

.hero-section {
    background: linear-gradient(135deg, #1A1A1A, #000000);
    color: #FFFFFF;
    padding: 50px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: #FFD700;
}

.about-section {
    padding: 40px 0;
    background: #1A1A1A;
}

.about-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: 'Space Grotesk', sans-serif;
    color: #FFD700;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.casino-listings {
    padding: 40px 0;
    background: #000000;
}

.casino-item {
    margin-bottom: 35px;
}

.casino-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: 'Space Grotesk', sans-serif;
    color: #FFD700;
}

.casino-details p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.casino-details strong {
    color: #FFD700;
    font-weight: 600;
}

.closing-content {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.closing-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.disclaimer-section {
    padding: 30px 0;
    background: #1A1A1A;
}

.disclaimer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
    color: #FFD700;
}

.disclaimer-section p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer {
    background: #000000;
    color: rgba(255, 255, 255, 0.6);
    padding: 16px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 13px;
}

@media (max-width: 768px) {
    .age-verification-section {
        padding: 30px 16px;
    }

    .age-verification-content {
        padding: 0;
        max-width: 100%;
    }

    .modal-header {
        padding: 24px 24px 12px;
    }

    .age-badge {
        width: 80px;
        height: 80px;
    }

    .modal-body {
        padding: 0 24px 24px;
    }

    .age-title {
        font-size: 24px;
    }

    .age-subtitle {
        font-size: 14px;
    }

    .age-description {
        font-size: 13px;
    }

    .modal-footer {
        padding: 12px 24px 16px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .about-section, .casino-listings {
        padding: 30px 0;
    }

    .casino-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .age-title {
        font-size: 22px;
    }

    .btn-confirm,
    .btn-decline {
        font-size: 14px;
        padding: 12px 20px;
    }

    .btn-icon {
        font-size: 18px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .casino-item h3 {
        font-size: 20px;
    }
}