@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --primary: #ff007c;
    --secondary: #7000ff;
    --third: #00c3ff;
    --dark: #0a0a14;
    --darker: #050508;
    --light: #f8f9fd;
    --gold: #d4af37;
    --accent: #ff3e78;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 20, 0.95);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 0px;
}

::selection {
    background: var(--primary);
    color: var(--light);
}

/* Canvas für 3D Hintergrund */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

.text-muted {
	color: #888;
	font-size: 8px !important;
}

/* Glassmorphism Base */
.glass {
    background: rgba(10, 10, 20, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Noise Overlay für Textur */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.06'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
    z-index: 1000;
}

/* Mouse Follower */
.cursor-follower {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 124, 0.1) 0%, rgba(112, 0, 255, 0.05) 30%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(20px);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

/* Header styling mit Neon-Effekt */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 0, 124, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo mit erweiterten Animationen */
.logo {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--light);
    text-decoration: none;
    position: relative;
    letter-spacing: 1px;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 0, 124, 0.4);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 500px;
}

.logo:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: logoLineScan 3s infinite;
}

.logo:after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--primary);
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.5s ease;
    pointer-events: none;
}

.logo:hover:after {
    opacity: 0.5;
    transform: scale(1);
}

.logo span {
    color: var(--primary);
    position: relative;
    display: inline-block;
    animation: neonPulse 4s infinite;
}

/* Spezifisches Styling für das erste L und C */
.logo span:first-child {
    animation-delay: 0s;
}

.logo span:nth-child(2) {
    animation-delay: 1.5s;
}

/* Logo Animation */
@keyframes logoLineScan {
    0% {
        width: 0;
        left: 0;
        opacity: 0;
    }
    20% {
        width: 100%;
        left: 0;
        opacity: 1;
    }
    80% {
        width: 100%; 
        left: 0;
        opacity: 1;
    }
    100% {
        width: 0;
        left: 100%;
        opacity: 0;
    }
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 0, 124, 0.4), 0 0 15px rgba(255, 0, 124, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 0, 124, 0.6), 0 0 40px rgba(255, 0, 124, 0.3);
    }
}

/* Navigation mit Split-Effekt */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
    position: relative;
    overflow: hidden;
}

nav ul li a {
    color: var(--light);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding: 5px 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

nav ul li a:before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    transform: translate3d(0, 0, 0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    color: var(--primary);
}

nav ul li a:hover, nav ul li a:active, nav ul li a:focus {
    transform: translateY(-100%);
}

/* Statische Glow-Effekte für Touch-Geräte */
.touch-glow {
    position: relative;
}

.touch-glow:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 124, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.touch-glow.active:after {
    opacity: 1;
}

/* Menu Toggle für Mobilgeräte */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--light);
    transition: all 0.3s ease;
}

/* Elegante Buttons ohne Rundungen */
.btn-elegant {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    color: var(--light);
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
    cursor: pointer;
}

.btn-elegant:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-elegant:hover, .btn-elegant:active, .btn-elegant:focus {
    color: var(--light);
    border-color: var(--primary);
}

.btn-elegant:hover:before, .btn-elegant:active:before, .btn-elegant:focus:before {
    left: 0;
}

/* Static Button Glow for Touch Devices */
.btn-elegant.touch-active {
    background-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 0, 124, 0.5);
}

/* Illuminierte Sektion-Überschriften */
.illuminated-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.illuminated-title h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    margin-bottom: 20px;
    color: var(--light);
}

.illuminated-title h2:before, .illuminated-title h2:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.illuminated-title h2:before {
    left: -80px;
}

.illuminated-title h2:after {
    right: -80px;
}

.illuminated-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.8;
    font-weight: 300;
}

/* Sektion Styling */
section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Gestylte Section Marker */
.section-marker {
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: 15vw;
    font-weight: 700;
    opacity: 0.03;
    color: var(--primary);
    z-index: -1;
    pointer-events: none;
    text-transform: uppercase;
}

.marker-right {
    top: 20%;
    right: -5%;
    transform: rotate(90deg);
}

.marker-left {
    bottom: 10%;
    left: -5%;
    transform: rotate(-90deg);
}

/* Animate On Scroll Effekte */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-up.active {
    opacity: 1;
    transform: scale(1);
}

/* Shimmer Effect für statische Elemente */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* Glitch Effect für statische Elemente */
.glitch-effect {
    position: relative;
}

.glitch-effect:hover:after, .glitch-effect:active:after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 0;
    color: var(--primary);
    clip: rect(0, 900px, 0, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(5px, 9999px, 10px, 0);
    }
    25% {
        clip: rect(15px, 9999px, 20px, 0);
    }
    50% {
        clip: rect(8px, 9999px, 10px, 0);
    }
    75% {
        clip: rect(12px, 9999px, 5px, 0);
    }
    100% {
        clip: rect(19px, 9999px, 1px, 0);
    }
}

/* Anminated Border */
.animated-border {
    position: relative;
}

.animated-border:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    animation: border-pulse 2s infinite;
}

@keyframes border-pulse {
    0%, 100% {
        border-color: rgba(255, 0, 124, 0.2);
    }
    50% {
        border-color: rgba(255, 0, 124, 0.8);
    }
}

/* Static Pulse Effect */
.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Elegante Altersbestätigung */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.age-verification.hidden {
    opacity: 0;
    visibility: hidden;
}

.age-container {
    max-width: 600px;
    padding: 60px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 10, 20, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.age-container:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 0, 124, 0.2);
    pointer-events: none;
}

.age-logo {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light);
}

.age-logo span {
    color: var(--primary);
}

.age-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light);
}

.age-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--light);
    opacity: 0.8;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.age-btn {
    padding: 15px 40px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn-yes {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
}

.age-btn-yes:hover, .age-btn-yes:active, .age-btn-yes:focus {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 0, 124, 0.5);
}

.age-btn-no {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-btn-no:hover, .age-btn-no:active, .age-btn-no:focus {
    background: rgba(255, 255, 255, 0.05);
}

/* Footer mit modernem Design */
footer {
    background-color: var(--darker);
    padding: 100px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--light);
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--primary);
}

.footer-about {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 30px;
    max-width: 90%;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social:hover, .footer-social:active, .footer-social:focus {
    background: var(--primary);
    transform: translateY(-5px);
    border-color: transparent;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--light);
    opacity: 0.7;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    transform: translateX(0);
}

.footer-links a:hover, .footer-links a:active, .footer-links a:focus {
    color: var(--primary);
    opacity: 1;
    transform: translateX(5px);
}

.footer-newsletter p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-family: 'Montserrat', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 20px;
    background: var(--primary);
    border: none;
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover, .newsletter-btn:active, .newsletter-btn:focus {
    background: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    nav ul {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        order: 2;
        z-index: 101;
        position: relative;
    }
    
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--light);
        transform-origin: center;
        transition: all 0.3s ease;
    }
    
    .menu-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .logo {
        order: 1;
    }
    
    nav.active ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        justify-content: center;
        align-items: center;
        z-index: 100;
    }
    
    nav.active ul li {
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
	.logo {
		font-size:20px;
	}
    .age-container {
        padding: 30px;
        width: 90%;
    }
    
    .age-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.visitor-counter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.visitor-counter .counter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.visitor-counter .counter-item:hover {
    opacity: 1;
    color: var(--primary);
}

.visitor-counter .label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.visitor-counter .today-count,
.visitor-counter .total-count,
.visitor-counter .online-count {
    font-weight: bold;
    font-size: 16px;
    color: var(--primary);
}

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark), var(--darker));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    width: 300px;
}

.loader-logo {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 0, 124, 0.4);
}

.loader-logo span {
    color: var(--primary);
    animation: neonPulse 2s infinite;
}

.loader-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: bottom 0.5s ease;
    border-top: 1px solid rgba(255, 0, 124, 0.1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
}

.cookie-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.cookie-option {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    transition: background 0.3s ease;
}

.cookie-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
}

.cookie-option small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#accept-all,
#save-preferences {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    background: transparent;
    color: var(--light);
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    z-index: 1;
}

#accept-all:before,
#save-preferences:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

#accept-all:hover,
#save-preferences:hover {
    color: var(--light);
}

#accept-all:hover:before,
#save-preferences:hover:before {
    left: 0;
}

#accept-all {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#accept-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}
/* Cookie Modal Styles */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(10px);
}

.cookie-modal-content {
    background-color: var(--dark);
    margin: 15% auto;
    padding: 30px;
    border: 1px solid rgba(255, 0, 124, 0.2);
    width: 80%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 0, 124, 0.1);
}

.close-modal {
    color: var(--light);
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary);
}

.cookie-modal h2 {
    color: var(--light);
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cookie-options label:hover {
    opacity: 1;
}

.cookie-options input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
}

.cookie-options input[type="checkbox"]:checked {
    background-color: var(--primary);
}

.cookie-options input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light);
    font-size: 12px;
}

.cookie-options input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#save-cookie-preferences {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    border: none;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#save-cookie-preferences:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
}

.newsletter-form {
    position: relative;
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--primary);
    outline: none;
}

.newsletter-name {
    display: none; /* Initially hidden, can be shown with JS if needed */
}

.newsletter-toast {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.newsletter-toast.success {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    opacity: 1;
}

.newsletter-toast.error {
    background-color: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    opacity: 1;
}
/* FAQ Styles for Global Use */

.faq-section {
    padding: 80px 0;
    background: rgba(10, 10, 20, 0.5);
    position: relative;
}

.faq-container {
    margin-top: 50px;
}

/* FAQ Category Filters */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.faq-category-filter {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-category-filter i {
    margin-right: 8px;
    color: var(--primary);
}

.faq-category-filter:hover {
    border-color: rgba(255, 0, 124, 0.2);
    transform: translateY(-3px);
}

.faq-category-filter.active {
    border-color: rgba(255, 0, 124, 0.3);
    background: rgba(255, 0, 124, 0.05);
    transform: translateY(-3px);
}

/* FAQ Items */
.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 0, 124, 0.2);
}

.faq-item.active {
    border-color: rgba(255, 0, 124, 0.3);
    background: rgba(255, 0, 124, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-toggle i {
    font-size: 16px;
    color: var(--primary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

/* IMPORTANT FIXES FOR FAQ TOGGLE FUNCTIONALITY */
.faq-answer {
    padding: 0 20px;
    max-height: 0; /* Start collapsed */
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px; /* Add bottom padding when expanded */
    max-height: 2000px; /* Large enough for any answer */
}
/* END OF FIXES */

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
    opacity: 0.9;
}

/* Animation for the whole section */
.faq-section.animated-bg {
    position: relative;
    overflow: hidden;
}

.faq-section.animated-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 0, 124, 0.05), transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(112, 0, 255, 0.05), transparent 50%);
    z-index: -1;
    opacity: 0.5;
    animation: faqGradient 15s infinite alternate;
}

@keyframes faqGradient {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Accent decoration */
.faq-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

/* Animation for fade-in */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-category-filter {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px 15px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 14px;
    }
}