:root {
    --gold: #d4af37;
    --dark-gold: #aa8c2c;
    --chrome: #e8e8e8;
    --dark-bg: #0a0a0a;
    --purple-accent: #7b68ee;
    --animation-offset: 0.2s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: white;
    overflow-x: hidden;
}

body.menu-open {
    overflow-y: hidden !important;
}

body.modal-open {
    overflow-y: hidden !important;
}

.age-verification-hidden {
    display: none !important;
}

/* Stile für Modals wenn sie aktiv sind */
.modal.active,
.lightbox.active,
#age-verification-modal:not(.age-verification-hidden) {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Loader Animation */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader {
    width: 100px;
    height: 100px;
    position: relative;
}

.loader:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--chrome);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(45deg, var(--gold), var(--chrome));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    animation: shimmer 3s linear infinite;
}

.logo span {
    color: var(--purple-accent);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--chrome));
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.primary-cta {
    background: linear-gradient(
        45deg, 
        var(--gold), 
        var(--dark-gold),
        #c0a028,
        #d4af37,
        var(--gold),
        #e3c76a,
        var(--dark-gold),
        #c19a23
    );
    background-size: 300% 300%;
    animation: goldShimmer 12s ease infinite;
    color: white;
    border: none;
    /* Rest der Eigenschaften bleibt gleich */
}

.primary-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg, 
        var(--purple-accent), 
        var(--gold),
        #9b85f6,
        #b39d2b,
        var(--purple-accent)
    );
    background-size: 200% 200%;
    animation: goldShimmer 8s ease infinite;
    transition: all 0.5s ease;
    z-index: -1;
}

.cta-button:hover:before {
    left: 0;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: white;
    border: none;
    padding: 15px 0;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--purple-accent), var(--gold));
    transition: all 0.5s ease;
    z-index: -1;
}

.cta-button {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: pulse 2s infinite;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--purple-accent), var(--gold));
    transition: all 0.5s ease;
    z-index: -1;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards, goldShimmer 5s ease infinite;
    animation-delay: 0.5s;
    background: linear-gradient(45deg, var(--gold), var(--chrome));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.7s;
    max-width: 700px;
    letter-spacing: 2px;
}

/* Animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.slide-right {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInRight 0.8s ease forwards;
}

.slide-left {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInLeft 0.8s ease forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.9s;
}

.hero-cta {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.primary-cta:hover:before {
    left: 0;
}

.secondary-cta {
    background: transparent;
    color: white;
    border: 2px solid var(--gold);
}

.secondary-cta:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* About Section */
.section {
    padding: 100px 10%;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 600;
    display: inline-block;
    background: linear-gradient(
        45deg, 
        var(--gold), 
        var(--chrome),
        #c0a028,
        #f1e8b8,
        var(--gold),
        #e3c76a,
        var(--chrome),
        #c19a23
    );
    background-size: 400% 400%;
    animation: goldShimmer 5s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--purple-accent));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.about-text p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon, .info-icon {
    background: linear-gradient(
        45deg, 
        var(--gold), 
        var(--dark-gold),
        #c0a028,
        #e3c76a,
        var(--gold)
    );
    background-size: 200% 200%;
    animation: goldShimmer 6s ease infinite;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--gold);
}

.feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.2), rgba(123, 104, 238, 0.2));
    pointer-events: none;
}

/* Gallery Section */
.gallery {
    background-color: #0d0d0d;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.gallery-item.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.4s;
}

.gallery-item:nth-child(5) {
    animation-delay: 0.5s;
}

.gallery-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* 3D Transform Effects */
.gallery-item:hover {
    transform: perspective(1000px) rotateY(5deg);
    box-shadow: -10px 10px 20px rgba(0, 0, 0, 0.3);
}

.event-card:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

/* Custom Cursor für interaktive Elemente */
.gallery-item, .event-card, button, .nav-links a {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23d4af37" stroke="%23000" stroke-width="1"><circle cx="12" cy="12" r="6"/></svg>') 12 12, auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold);
}

.gallery-description {
    font-size: 14px;
    color: var(--chrome);
}

/* Events Section */
.events-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.event-card.slide-up {
    animation: fadeInUp 0.8s ease forwards;
}

.event-card:nth-child(1) {
    animation-delay: 0.2s;
}

.event-card:nth-child(2) {
    animation-delay: 0.4s;
}

.event-card:nth-child(3) {
    animation-delay: 0.6s;
}

.event-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--purple-accent));
}

.event-image {
    width: 100%;
    height: 200px;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--dark-bg);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
}

.event-content {
    padding: 25px;
}

.event-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold);
}

.event-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--chrome);
    font-size: 14px;
}

.event-button {
    width: 100%;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 0;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.event-button:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('https://images.pexels.com/photos/924824/pexels-photo-924824.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
    animation-delay: 0.3s;
}

.contact-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold);
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.info-box:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--chrome);
}

.info-content p {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.contact-form {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    opacity: 0;
    animation: slideInRight 1s ease forwards;
    animation-delay: 0.3s;
}

.contact-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--purple-accent));
    border-radius: 10px 10px 0 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--chrome);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}



.submit-button:hover:before {
    left: 0;
}

/* Footer */
footer {
    background-color: #070707;
    padding: 50px 10% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(45deg, var(--gold), var(--chrome));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--gold);
    position: relative;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .gallery-container, .events-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .about-content, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section {
        padding: 80px 5%;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .events-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Partikel-Animation */
@keyframes floatParticle {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none; /* Verhindert Klicks auf das Video */
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* Seitenverhältnis 16:9 */
    min-height: 100%;
    min-width: 177.77vh; /* Seitenverhältnis 16:9 */
    transform: translate(-50%, -50%);
}

/* Girls Section */
.girls {
    background-color: #0d0d0d;
    padding-bottom: 120px;
}

.girls-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.girl-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.girl-card:nth-child(1) {
    animation-delay: 0.1s;
}

.girl-card:nth-child(2) {
    animation-delay: 0.2s;
}

.girl-card:nth-child(3) {
    animation-delay: 0.3s;
}

.girl-card:nth-child(4) {
    animation-delay: 0.4s;
}

.girl-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.girl-card:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg, 
        var(--gold), 
        var(--chrome),
        #c0a028,
        #f1e8b8,
        var(--gold),
        #e3c76a,
        var(--chrome),
        #c19a23
    );
    background-size: 300% 300%;
    animation: goldShimmer 3s ease infinite;
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.girl-card:hover:after {
    opacity: 1;
}

.girl-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.girl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.girl-card:hover .girl-image img {
    transform: scale(1.05);
}

.girl-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 20px;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.girl-card:hover .girl-flag {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

/* Dynamische Länderflaggen nach ISO-Code */
.at-flag { background-image: url('../img/flags/at.png'); } /* Österreich */
.be-flag { background-image: url('../img/flags/be.png'); } /* Belgien */
.bg-flag { background-image: url('../img/flags/bg.png'); } /* Bulgarien */
.br-flag { background-image: url('../img/flags/br.png'); } /* Brasilien */
.by-flag { background-image: url('../img/flags/by.png'); } /* Belarus/Weißrussland */
.ca-flag { background-image: url('../img/flags/ca.png'); } /* Kanada */
.ch-flag { background-image: url('../img/flags/ch.png'); } /* Schweiz */
.cn-flag { background-image: url('../img/flags/cn.png'); } /* China */
.co-flag { background-image: url('../img/flags/co.png'); } /* Kolumbien */
.cz-flag { background-image: url('../img/flags/cz.png'); } /* Tschechien */
.de-flag { background-image: url('../img/flags/de.png'); } /* Deutschland */
.dk-flag { background-image: url('../img/flags/dk.png'); } /* Dänemark */
.do-flag { background-image: url('../img/flags/do.png'); } /* Dominikanische Republik */
.ee-flag { background-image: url('../img/flags/ee.png'); } /* Estland */
.es-flag { background-image: url('../img/flags/es.png'); } /* Spanien */
.fi-flag { background-image: url('../img/flags/fi.png'); } /* Finnland */
.fr-flag { background-image: url('../img/flags/fr.png'); } /* Frankreich */
.gb-flag, .uk-flag { background-image: url('../img/flags/gb.png'); } /* Großbritannien */
.gr-flag { background-image: url('../img/flags/gr.png'); } /* Griechenland */
.hr-flag { background-image: url('../img/flags/hr.png'); } /* Kroatien */
.hu-flag { background-image: url('../img/flags/hu.png'); } /* Ungarn */
.id-flag { background-image: url('../img/flags/id.png'); } /* Indonesien */
.in-flag { background-image: url('../img/flags/in.png'); } /* Indien */
.it-flag { background-image: url('../img/flags/it.png'); } /* Italien */
.jp-flag { background-image: url('../img/flags/jp.png'); } /* Japan */
.kr-flag { background-image: url('../img/flags/kr.png'); } /* Südkorea */
.lt-flag { background-image: url('../img/flags/lt.png'); } /* Litauen */
.lv-flag { background-image: url('../img/flags/lv.png'); } /* Lettland */
.md-flag { background-image: url('../img/flags/md.png'); } /* Moldawien */
.mx-flag { background-image: url('../img/flags/mx.png'); } /* Mexiko */
.my-flag { background-image: url('../img/flags/my.png'); } /* Malaysia */
.nl-flag { background-image: url('../img/flags/nl.png'); } /* Niederlande */
.no-flag { background-image: url('../img/flags/no.png'); } /* Norwegen */
.pe-flag { background-image: url('../img/flags/pe.png'); } /* Peru */
.ph-flag { background-image: url('../img/flags/ph.png'); } /* Philippinen */
.pl-flag { background-image: url('../img/flags/pl.png'); } /* Polen */
.pt-flag { background-image: url('../img/flags/pt.png'); } /* Portugal */
.ro-flag { background-image: url('../img/flags/ro.png'); } /* Rumänien */
.ru-flag { background-image: url('../img/flags/ru.png'); } /* Russland */
.se-flag { background-image: url('../img/flags/se.png'); } /* Schweden */
.sg-flag { background-image: url('../img/flags/sg.png'); } /* Singapur */
.si-flag { background-image: url('../img/flags/si.png'); } /* Slowenien */
.sk-flag { background-image: url('../img/flags/sk.png'); } /* Slowakei */
.th-flag { background-image: url('../img/flags/th.png'); } /* Thailand */
.tr-flag { background-image: url('../img/flags/tr.png'); } /* Türkei */
.ua-flag { background-image: url('../img/flags/ua.png'); } /* Ukraine */
.us-flag { background-image: url('../img/flags/us.png'); } /* USA */
.vn-flag { background-image: url('../img/flags/vn.png'); } /* Vietnam */
.za-flag { background-image: url('../img/flags/za.png'); } /* Südafrika */

/* Zusätzliche für häufig nachgefragte Regionen */
.cu-flag { background-image: url('../img/flags/cu.png'); } /* Kuba */
.ve-flag { background-image: url('../img/flags/ve.png'); } /* Venezuela */
.ar-flag { background-image: url('../img/flags/ar.png'); } /* Argentinien */
.cl-flag { background-image: url('../img/flags/cl.png'); } /* Chile */
.uy-flag { background-image: url('../img/flags/uy.png'); } /* Uruguay */
.py-flag { background-image: url('../img/flags/py.png'); } /* Paraguay */
.cr-flag { background-image: url('../img/flags/cr.png'); } /* Costa Rica */
.pa-flag { background-image: url('../img/flags/pa.png'); } /* Panama */
.ec-flag { background-image: url('../img/flags/ec.png'); } /* Ecuador */
.bo-flag { background-image: url('../img/flags/bo.png'); } /* Bolivien */

/* Verbesserung für die Girl-Card, um Flaggen besser hervorzuheben */
.girl-card:hover .girl-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 5;
}

/* Tooltip für Flaggen bei Hover */
.girl-flag::after {
    content: attr(title);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.girl-flag:hover::after {
    opacity: 1;
    visibility: visible;
}

.girl-profile {
    padding: 15px;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.9));
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--gold);
}

.girl-card:hover .girl-profile {
    transform: translateY(0);
}

.girl-name {
    padding: 15px 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    margin: 0;
    background: rgba(20, 20, 20, 0.9);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.girl-info {
    margin-bottom: 15px;
}

.info-item {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.info-label {
    color: var(--gold);
    font-weight: 600;
}

.info-value {
    color: var(--chrome);
}

.girl-button {
    width: 100%;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 8px 0;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.girl-button:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

/* Media Queries für die Girls-Sektion */
@media (max-width: 1400px) {
    .girls-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1000px) {
    .girls-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .girls-container {
        grid-template-columns: 1fr;
    }
}

.static-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1556035511-3168381ea4d4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2134&q=80') center/cover no-repeat;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Animierter Farbverlauf für verschiedene Elemente */
@keyframes goldShimmer {
    0% {
        background-position: 0% 50%;
        background-size: 200% 200%;
    }
    25% {
        background-position: 50% 100%;
        background-size: 150% 250%;
    }
    50% {
        background-position: 100% 50%;
        background-size: 250% 150%;
    }
    75% {
        background-position: 50% 0%;
        background-size: 300% 100%;
    }
    100% {
        background-position: 0% 50%;
        background-size: 200% 200%;
    }
}

.animated-gold-gradient {
    background: linear-gradient(
        45deg, 
        var(--gold), 
        var(--chrome),
        #c0a028,
        #f1e8b8,
        var(--gold),
        #e3c76a,
        var(--chrome),
        #c19a23
    );
    background-size: 400% 400%;
    animation: goldShimmer 15s ease infinite;
}
/* Cookie-Banner und Modal-Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    color: white;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--gold);
    backdrop-filter: blur(10px);
}

.cookie-banner p {
    flex: 1;
    margin: 0;
    padding-right: 20px;
}

.cookie-banner button, 
.cookie-banner a {
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-banner button {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: black;
    border: none;
    margin-right: 10px;
}

.cookie-banner a {
    color: var(--gold);
    text-decoration: none;
}

.cookie-banner button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1a1a1a;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    color: white;
    border: 1px solid var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h2 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 24px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: scale(1.2) rotate(90deg);
    color: white;
}

.modal-content div {
    margin-bottom: 15px;
}

.modal-content input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--gold);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 10px;
}

.modal-content input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    color: var(--gold);
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-content label {
    cursor: pointer;
    vertical-align: middle;
}

.modal-content button {
    margin-top: 20px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-content button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Spezifische fixierte Höhe für Cookie-Settings-Modal */
#cookie-settings-modal .modal-content {
    height: auto !important;
    min-height: 250px;
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 200;
    position: relative;
}

.mobile-menu-btn span {
    height: 3px;
    width: 100%;
    background: var(--gold);
    display: block;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Responsive Stile */
@media (max-width: 1024px) {
    .logo {
        font-size: 22px;
    }
    
    .nav-container {
        padding: 15px 5%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        z-index: 200;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;  /* Startposition außerhalb des Bildschirms */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        border-left: 1px solid var(--gold);
        display: flex !important;  /* Erzwingt flex-Display */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease;
        z-index: 150;  /* Höherer z-index als header */
        gap: 20px;
        padding: 40px 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        visibility: hidden;  /* Zusätzlich unsichtbar machen */
        opacity: 0;
    }
    
    .nav-links.active {
        right: 0;
        visibility: visible;  /* Sichtbar machen wenn aktiv */
        opacity: 1;
    }
    
    .nav-links a {
        margin: 10px 0;
        font-size: 18px;
    }
    
    .nav-links .cta-button {
        margin: 20px 0 0;
        width: 80%;
        text-align: center;
    }
    
    header.scrolled {
        background-color: rgba(10, 10, 10, 0.98);
    }
	/* Animation für den Hamburger-Button */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }
    
    .nav-container {
        padding: 12px 4%;
    }
    
    .nav-links {
        width: 100%;
        max-width: 100%;
    }
}

/* Age Verification Modal Styles */
#age-verification-modal {
    backdrop-filter: blur(8px);
}

#age-verification-modal .modal-content {
    width: 90%;
    max-width: 500px;
    padding: 0;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(to bottom, #0a0a0a 0%, #1a1a1a 100%);
}

#age-verification-modal .modal-header {
    text-align: center;
    padding: 20px 20px 0;
    background: linear-gradient(45deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.9));
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

#age-verification-modal .modal-logo {
    max-width: 180px;
    height: auto;
    margin: 0 auto;
    display: block;
}

#age-verification-modal .modal-body {
    padding: 30px;
    text-align: center;
}

#age-verification-modal h2 {
    font-size: 26px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--gold), var(--chrome));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

#age-verification-modal p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

#age-verification-modal .modal-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
	flex-direction: column;
}

#age-verification-modal .primary-cta {
    background: linear-gradient(
        45deg, 
        var(--gold), 
        var(--dark-gold),
        #c0a028,
        #d4af37,
        var(--gold)
    );
    background-size: 300% 300%;
    animation: goldShimmer 12s ease infinite;
    color: black;
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#age-verification-modal .primary-cta:before {
    display: none; /* Verhindert das Einfahren von links */
}

#age-verification-modal .primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

#age-verification-modal .secondary-cta {
    background: transparent;
    color: white;
    font-weight: 600;
    border: 2px solid var(--gold);
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: auto;
    flex-shrink: 0;
}

#age-verification-modal .secondary-cta:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Animation für das Erscheinen */
#age-verification-modal:not(.age-verification-hidden) .modal-content {
    animation: modalPulse 0.5s ease;
}

@keyframes modalPulse {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    70% {
        transform: scale(1.02);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    #age-verification-modal .modal-content {
        width: 95%;
    }
    
    #age-verification-modal .modal-logo {
        max-width: 150px;
    }
    
    #age-verification-modal h2 {
        font-size: 22px;
    }
    
    #age-verification-modal .modal-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    #age-verification-modal .modal-body {
        padding: 20px;
    }
    
    #age-verification-modal .modal-logo {
        max-width: 120px;
    }
    
    #age-verification-modal h2 {
        font-size: 20px;
    }
}