/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-pink: #ff00ff;
    --neon-blue: #00ffff;
    --neon-green: #39ff14;
    --neon-purple: #9d00ff;
    --dark-bg: #0a0a14;
    --darker-bg: #050510;
    --card-bg: rgba(20, 20, 40, 0.8);
    --text-light: #f0f0ff;
    --text-gray: #a0a0c0;
    --shadow-glow: 0 0 15px, 0 0 25px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(157, 0, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 20%);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.neon-text {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.8);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.btn-hero {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    color: var(--darker-bg);
    font-size: 18px;
    padding: 18px 40px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.7);
    margin-top: 30px;
}

.btn-hero:hover {
    box-shadow: 0 0 35px rgba(57, 255, 20, 0.9);
    transform: translateY(-5px);
}

.btn-bonus {
    background: linear-gradient(90deg, #ff9900, #ff3300);
    color: white;
    font-size: 17px;
    padding: 16px 36px;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.6);
    width: 100%;
}

.btn-bonus:hover {
    box-shadow: 0 0 25px rgba(255, 153, 0, 0.9);
    transform: translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 30, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--neon-purple);
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 -5px 30px rgba(157, 0, 255, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    z-index: 100;
    padding: 15px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: white;
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link i {
    margin-right: 8px;
}

.responsible-gambling {
    color: var(--neon-green) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(5, 5, 16, 0.7), rgba(10, 10, 20, 0.9));
    z-index: -1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--neon-blue);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* Casino Section */
.casino-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.casino-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.2);
    border-color: rgba(255, 0, 255, 0.4);
}

.casino-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.casino-badge-secondary {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-logo img {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.casino-rating {
    text-align: right;
}

.stars {
    color: #ffcc00;
    font-size: 20px;
    margin-bottom: 5px;
}

.rating-text {
    color: var(--text-gray);
    font-size: 14px;
}

.casino-body {
    padding: 30px;
}

.casino-name {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--neon-blue);
}

.casino-description {
    margin-bottom: 25px;
    color: var(--text-gray);
    line-height: 1.7;
}

.advantages-list {
    margin-bottom: 30px;
}

.advantage {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.advantage i {
    color: var(--neon-green);
    margin-right: 12px;
    font-size: 18px;
}

.bonus-note {
    margin-top: 15px;
    color: #ffcc00;
    font-size: 14px;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.disclaimer-note {
    padding: 20px;
    background: rgba(255, 153, 0, 0.1);
    border-left: 4px solid #ff9900;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
}

.disclaimer-note i {
    color: #ff9900;
    margin-right: 10px;
}

.about-image {
    flex: 0 0 300px;
}

.about-icon {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: var(--neon-pink);
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.3);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {box-shadow: 0 0 50px rgba(255, 0, 255, 0.3);}
    50% {box-shadow: 0 0 80px rgba(255, 0, 255, 0.5);}
    100% {box-shadow: 0 0 50px rgba(255, 0, 255, 0.3);}
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.2);
    background: rgba(20, 20, 40, 0.6);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    color: white;
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 255, 255, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--neon-blue);
}

/* Responsible Gambling Section */
.responsible-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    text-align: center;
}

.responsible-header {
    margin-bottom: 60px;
}

.age-restriction {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff3300;
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 30px;
}

.age-icon {
    width: 50px;
    height: 50px;
    background: #ff3300;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin-right: 15px;
}

.responsible-subtitle {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.2rem;
    color: var(--text-gray);
}

.responsible-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.responsible-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(20, 30, 50, 0.6);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    transition: var(--transition);
}

.responsible-card:hover {
    transform: translateY(-10px);
    border-color: rgba(57, 255, 20, 0.5);
    box-shadow: 0 15px 30px rgba(57, 255, 20, 0.1);
}

.responsible-icon {
    width: 80px;
    height: 80px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--neon-green);
}

.responsible-card h3 {
    margin-bottom: 15px;
    color: var(--neon-green);
}

.responsible-resources {
    margin-bottom: 40px;
}

.responsible-resources h3 {
    margin-bottom: 20px;
    color: var(--neon-blue);
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.resource-link {
    display: block;
    padding: 15px 25px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.resource-link:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateX(10px);
}

.resource-link i {
    margin-right: 10px;
    color: var(--neon-blue);
}

.responsible-hotline {
    padding: 25px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 0, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

.responsible-hotline p {
    font-size: 1.2rem;
}

.responsible-hotline i {
    color: #ff3300;
    margin-right: 10px;
}

/* Footer */
.footer {
    background: #050510;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 0, 255, 0.2);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-logo .logo {
    font-size: 28px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-description {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--neon-pink);
    color: white;
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--neon-blue);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--neon-pink);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--neon-blue);
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 10px;
    font-size: 12px;
}

.footer-contact p {
    margin-bottom: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 12px;
    margin-top: 5px;
    color: var(--neon-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-icon {
        width: 250px;
        height: 250px;
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 30, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        border-bottom: 2px solid var(--neon-pink);
        z-index: 99;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .casino-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .casino-rating {
        text-align: left;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .responsible-content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .btn-hero {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .casino-badge {
        position: relative;
        top: 0;
        right: 0;
        align-self: flex-start;
        margin-bottom: 15px;
    }
    
    .casino-header {
        padding: 20px 20px 15px;
    }
    
    .casino-body {
        padding: 20px;
    }
}
    :root {
            --neon-pink: #ff00ff;
            --neon-blue: #00ffff;
            --neon-green: #39ff14;
            --dark-bg: #0a0a14;
            --darker-bg: #050510;
            --card-bg: rgba(20, 20, 40, 0.8);
            --text-light: #f0f0ff;
            --text-gray: #a0a0c0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(157, 0, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .cookies-header {
            background: linear-gradient(135deg, rgba(10, 10, 30, 0.95), rgba(5, 5, 20, 0.95));
            padding: 80px 0 40px;
            text-align: center;
            border-bottom: 2px solid var(--neon-green);
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 32px;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 20px;
        }

        .neon-text {
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }

        .page-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--neon-pink);
            text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
        }

        .page-subtitle {
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .cookie-icon {
            font-size: 60px;
            color: var(--neon-green);
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Content */
        .cookies-content {
            flex: 1;
            padding: 60px 0;
        }

        .content-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 50px;
            border: 1px solid rgba(57, 255, 20, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 40px;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            color: var(--neon-blue);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(0, 255, 255, 0.3);
        }

        .section-title:first-child {
            margin-top: 0;
        }

        .subsection-title {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.4rem;
            color: var(--neon-green);
            margin: 30px 0 15px;
            font-weight: 600;
        }

        p {
            margin-bottom: 20px;
            color: var(--text-gray);
        }

        ul, ol {
            margin: 20px 0 20px 40px;
            color: var(--text-gray);
        }

        li {
            margin-bottom: 10px;
        }

        strong {
            color: var(--text-light);
        }

        .highlight {
            background: rgba(255, 0, 255, 0.1);
            padding: 20px;
            border-left: 4px solid var(--neon-pink);
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }

        .info-box {
            background: rgba(57, 255, 20, 0.05);
            border: 1px solid rgba(57, 255, 20, 0.2);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }

        .warning-box {
            background: rgba(255, 153, 0, 0.1);
            border: 1px solid rgba(255, 153, 0, 0.3);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }

        .cookies-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: rgba(20, 30, 40, 0.5);
            border-radius: 10px;
            overflow: hidden;
        }

        .cookies-table th {
            background: rgba(0, 255, 255, 0.2);
            color: white;
            padding: 15px;
            text-align: left;
            font-family: 'Orbitron', sans-serif;
        }

        .cookies-table td {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
        }

        .cookies-table tr:last-child td {
            border-bottom: none;
        }

        .cookie-type {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-right: 8px;
        }

        .necessary { background: rgba(57, 255, 20, 0.2); color: var(--neon-green); }
        .preferences { background: rgba(255, 0, 255, 0.2); color: var(--neon-pink); }
        .analytics { background: rgba(0, 255, 255, 0.2); color: var(--neon-blue); }
        .marketing { background: rgba(255, 153, 0, 0.2); color: #ff9900; }

        .cookie-controls {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }

        .cookie-control {
            flex: 1;
            min-width: 200px;
            background: rgba(20, 30, 50, 0.6);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(255, 0, 255, 0.2);
            transition: all 0.3s ease;
        }

        .cookie-control:hover {
            border-color: var(--neon-pink);
            transform: translateY(-5px);
        }

        .cookie-control h3 {
            color: var(--neon-blue);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cookie-control i {
            font-size: 24px;
        }

        /* Footer */
        .cookies-footer {
            background: #050510;
            padding: 40px 0;
            border-top: 1px solid rgba(57, 255, 20, 0.2);
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--neon-blue);
        }

        .footer-links i {
            margin-right: 8px;
            color: var(--neon-pink);
        }

        .footer-bottom {
            color: var(--text-gray);
            font-size: 14px;
        }

        .back-home {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
        }

        .back-home:hover {
            box-shadow: 0 0 25px rgba(255, 0, 255, 0.8);
            transform: translateY(-3px);
        }

        .manage-cookies-btn {
            display: inline-block;
            margin: 20px 10px;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
            color: var(--darker-bg);
            text-decoration: none;
            border-radius: 50px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
            border: none;
            cursor: pointer;
        }

        .manage-cookies-btn:hover {
            box-shadow: 0 0 25px rgba(57, 255, 20, 0.8);
            transform: translateY(-3px);
        }

        /* Cookie Settings Modal */
        .cookie-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(5, 5, 16, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .cookie-modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            border: 2px solid var(--neon-pink);
            box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .modal-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            color: var(--neon-blue);
        }

        .close-modal {
            background: none;
            border: none;
            color: var(--text-gray);
            font-size: 28px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: var(--neon-pink);
        }

        .cookie-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: rgba(30, 30, 50, 0.5);
            border-radius: 10px;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cookie-info h4 {
            color: white;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cookie-info p {
            margin: 0;
            font-size: 14px;
        }

        .cookie-toggle {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }

        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .cookie-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.1);
            transition: .4s;
            border-radius: 34px;
        }

        .cookie-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        .cookie-toggle input:checked + .cookie-slider {
            background-color: var(--neon-green);
        }

        .cookie-toggle input:checked + .cookie-slider:before {
            transform: translateX(30px);
        }

        .cookie-toggle input:disabled + .cookie-slider {
            background-color: rgba(255, 0, 0, 0.3);
            cursor: not-allowed;
        }

        .modal-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            gap: 20px;
        }

        .modal-btn {
            flex: 1;
            padding: 15px;
            border-radius: 50px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-save {
            background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
            color: var(--darker-bg);
        }

        .modal-save:hover {
            box-shadow: 0 0 20px rgba(57, 255, 20, 0.7);
        }

        .modal-accept-all {
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
            color: white;
        }

        .modal-accept-all:hover {
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.7);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .content-card {
                padding: 30px 20px;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
            
            .cookies-table {
                display: block;
                overflow-x: auto;
            }
            
            .cookie-controls {
                flex-direction: column;
            }
            
            .modal-content {
                padding: 25px 20px;
            }
            
            .modal-actions {
                flex-direction: column;
            }
        }
           :root {
            --neon-pink: #ff00ff;
            --neon-blue: #00ffff;
            --neon-green: #39ff14;
            --dark-bg: #0a0a14;
            --darker-bg: #050510;
            --card-bg: rgba(20, 20, 40, 0.8);
            --text-light: #f0f0ff;
            --text-gray: #a0a0c0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(157, 0, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .terms-header {
            background: linear-gradient(135deg, rgba(10, 10, 30, 0.95), rgba(5, 5, 20, 0.95));
            padding: 80px 0 40px;
            text-align: center;
            border-bottom: 2px solid var(--neon-blue);
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 32px;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 20px;
        }

        .neon-text {
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }

        .page-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--neon-green);
            text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
        }

        .page-subtitle {
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Content */
        .terms-content {
            flex: 1;
            padding: 60px 0;
        }

        .content-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 50px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 40px;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            color: var(--neon-pink);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 0, 255, 0.3);
        }

        .section-title:first-child {
            margin-top: 0;
        }

        .subsection-title {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.4rem;
            color: var(--neon-blue);
            margin: 30px 0 15px;
            font-weight: 600;
        }

        p {
            margin-bottom: 20px;
            color: var(--text-gray);
        }

        ul, ol {
            margin: 20px 0 20px 40px;
            color: var(--text-gray);
        }

        li {
            margin-bottom: 10px;
        }

        strong {
            color: var(--text-light);
        }

        .highlight {
            background: rgba(57, 255, 20, 0.1);
            padding: 20px;
            border-left: 4px solid var(--neon-green);
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }

        .warning-box {
            background: rgba(255, 51, 0, 0.1);
            border: 1px solid rgba(255, 51, 0, 0.2);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }

        .info-box {
            background: rgba(0, 255, 255, 0.05);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }

        .legal-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: rgba(20, 30, 40, 0.5);
            border-radius: 10px;
            overflow: hidden;
        }

        .legal-table th {
            background: rgba(255, 0, 255, 0.2);
            color: white;
            padding: 15px;
            text-align: left;
            font-family: 'Orbitron', sans-serif;
        }

        .legal-table td {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
        }

        .legal-table tr:last-child td {
            border-bottom: none;
        }

        /* Footer */
        .terms-footer {
            background: #050510;
            padding: 40px 0;
            border-top: 1px solid rgba(0, 255, 255, 0.2);
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--neon-blue);
        }

        .footer-links i {
            margin-right: 8px;
            color: var(--neon-pink);
        }

        .footer-bottom {
            color: var(--text-gray);
            font-size: 14px;
        }

        .back-home {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
            color: var(--darker-bg);
            text-decoration: none;
            border-radius: 50px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
        }

        .back-home:hover {
            box-shadow: 0 0 25px rgba(57, 255, 20, 0.8);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .content-card {
                padding: 30px 20px;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
            
            .legal-table {
                display: block;
                overflow-x: auto;
            }
        }
           :root {
            --neon-pink: #ff00ff;
            --neon-blue: #00ffff;
            --neon-green: #39ff14;
            --dark-bg: #0a0a14;
            --darker-bg: #050510;
            --card-bg: rgba(20, 20, 40, 0.8);
            --text-light: #f0f0ff;
            --text-gray: #a0a0c0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(157, 0, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .privacy-header {
            background: linear-gradient(135deg, rgba(10, 10, 30, 0.95), rgba(5, 5, 20, 0.95));
            padding: 80px 0 40px;
            text-align: center;
            border-bottom: 2px solid var(--neon-pink);
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 32px;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 20px;
        }

        .neon-text {
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }

        .page-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }

        .page-subtitle {
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Content */
        .privacy-content {
            flex: 1;
            padding: 60px 0;
        }

        .content-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 50px;
            border: 1px solid rgba(255, 0, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 40px;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            color: var(--neon-green);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(57, 255, 20, 0.3);
        }

        .section-title:first-child {
            margin-top: 0;
        }

        p {
            margin-bottom: 20px;
            color: var(--text-gray);
        }

        ul {
            margin: 20px 0 20px 40px;
            color: var(--text-gray);
        }

        li {
            margin-bottom: 10px;
        }

        strong {
            color: var(--text-light);
        }

        .highlight {
            background: rgba(255, 0, 255, 0.1);
            padding: 20px;
            border-left: 4px solid var(--neon-pink);
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }

        .info-box {
            background: rgba(0, 255, 255, 0.05);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }

        /* Footer */
        .privacy-footer {
            background: #050510;
            padding: 40px 0;
            border-top: 1px solid rgba(255, 0, 255, 0.2);
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--neon-blue);
        }

        .footer-links i {
            margin-right: 8px;
            color: var(--neon-pink);
        }

        .footer-bottom {
            color: var(--text-gray);
            font-size: 14px;
        }

        .back-home {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
        }

        .back-home:hover {
            box-shadow: 0 0 25px rgba(255, 0, 255, 0.8);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .content-card {
                padding: 30px 20px;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }