:root {
            --bg-color: #1a1a2e;
            --accent-color: #e94560;
            --secondary-color: #4e4f9b;
            --text-color: #ffffff;
            --link-color: #e94560;
            --border-radius: 8px;
            --transition-duration: 0.3s;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: var(--bg-color);
            color: var(--text-color);
            position: relative;
        }

        h1, h2, h3, h4 {
            color: var(--text-color);
            font-weight: 700;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }

        a {
            color: var(--link-color);
            text-decoration: none;
            transition: color var(--transition-duration);
        }

        a:hover {
            color: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--text-color);
            padding: 12px 25px;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform var(--transition-duration), background-color var(--transition-duration);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #ff577a;
            transform: translateY(-3px);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.9);
            padding: 20px 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--accent-color);
        }

        .nav-menu {
            list-style: none;
            display: flex;
            gap: 25px;
        }

        .nav-menu a {
            font-weight: 500;
            font-size: 1rem;
            text-transform: uppercase;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            transition: all var(--transition-duration);
        }

        main {
            padding-top: 120px;
            padding-bottom: 80px;
        }

        .page-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 3rem;
            color: var(--accent-color);
        }

        .policy-section {
            background: var(--secondary-color);
            padding: 40px;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
        }
        .policy-section h2 {
            margin-bottom: 20px;
            color: var(--accent-color);
        }
        .policy-section p, .policy-section ul {
            margin-bottom: 20px;
        }
        .policy-section ul {
            padding-left: 20px;
            list-style: none;
        }
        .policy-section ul li {
            position: relative;
            margin-bottom: 10px;
        }
        .policy-section ul li::before {
            content: '›';
            position: absolute;
            left: -20px;
            color: var(--accent-color);
            font-weight: bold;
        }

        /* Disclaimer */
        .disclaimer {
            padding: 20px;
            text-align: center;
            background: #282a44;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Footer */
        footer {
            background: var(--secondary-color);
            padding: 50px 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h4 {
            margin-bottom: 15px;
            font-size: 1.2rem;
            color: var(--accent-color);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section p {
            margin-bottom: 10px;
        }

        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* Popups */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.95);
            padding: 20px;
            z-index: 1002;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
        }
        .cookie-banner.active {
            transform: translateY(0);
        }
        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
        }
        .cookie-banner .btn {
            white-space: nowrap;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 70%;
                background: #1a1a2e;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
            }

            .nav-menu.active {
                transform: translateX(0);
            }
            .nav-menu li {
                opacity: 0;
                transform: translateX(50px);
                transition: opacity 0.5s, transform 0.5s;
            }
            .nav-menu.active li {
                opacity: 1;
                transform: translateX(0);
            }
            .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
            .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
            .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
            .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
            .burger-menu {
                display: flex;
            }
            .burger-menu.active .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
            .burger-menu.active .line2 { opacity: 0; }
            .burger-menu.active .line3 { transform: rotate(45deg) translate(-5px, -6px); }
            .footer-content {
                flex-direction: column;
                text-align: left;
            }
        }

