 :root {
            --neon-blue: #0066ff;
            --bright-yellow: #ffdd00;
            --dark-blue: #001233;
            --light-blue: #00a8ff;
            --light-gray: #f5f5f5;
            --dark-gray: #333;
            --white: #ffffff;
            --black: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--dark-blue);
            color: var(--white);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: rgba(0, 18, 51, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
            padding: 15px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--bright-yellow);
            text-decoration: none;
        }

        .logo i {
            margin-right: 10px;
            color: var(--neon-blue);
            font-size: 2rem;
        }

        .logo span {
            color: var(--white);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav ul li a:hover {
            color: var(--bright-yellow);
            background-color: rgba(0, 102, 255, 0.2);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--white);
        }

        /* Banner Styles */
        .banner {
            height: 100vh;
            background: linear-gradient(rgba(0, 18, 51, 0.85), rgba(0, 18, 51, 0.9)), url('img/ban.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 80px;
        }

        .banner-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .banner h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--white);
            text-shadow: 0 0 10px rgba(0, 102, 255, 0.7);
        }

        .banner h1 span {
            color: var(--bright-yellow);
        }

        .banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #ccc;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, var(--neon-blue), var(--light-blue));
            color: var(--white);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 102, 255, 0.6);
            background: linear-gradient(to right, var(--light-blue), var(--neon-blue));
        }

        /* Casino List Styles */
        .casino-list {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 15px;
        }

        .section-title p {
            color: #aaa;
            max-width: 600px;
            margin: 0 auto;
        }

        .casino-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .casino-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 102, 255, 0.2);
            transition: all 0.3s ease;
        }

        .casino-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 102, 255, 0.3);
            border-color: var(--neon-blue);
        }

        .casino-logo {
            flex: 0 0 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.3);
            padding: 30px;
        }

        .casino-logo img {
            max-width: 100%;
            max-height: 120px;
            filter: drop-shadow(0 0 5px rgba(0, 102, 255, 0.5));
        }

        .casino-content {
            flex: 1;
            padding: 30px;
        }

        .casino-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .casino-header h3 {
            font-size: 1.8rem;
            color: var(--white);
        }

        .rating {
            background-color: var(--bright-yellow);
            color: var(--dark-blue);
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .advantages {
            margin-bottom: 25px;
        }

        .advantages ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .advantages li {
            background: rgba(0, 102, 255, 0.1);
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }

        .advantages li i {
            margin-right: 8px;
            color: var(--bright-yellow);
        }

        .bonus-button {
            display: inline-block;
            background: linear-gradient(to right, var(--bright-yellow), #ffc400);
            color: var(--dark-blue);
            padding: 12px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 221, 0, 0.3);
        }

        .bonus-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 221, 0, 0.5);
            background: linear-gradient(to right, #ffc400, var(--bright-yellow));
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background-color: rgba(0, 0, 0, 0.2);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .about-text p {
            margin-bottom: 20px;
            color: #ccc;
        }

        .about-image {
            flex: 1;
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid rgba(0, 102, 255, 0.1);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .faq-question:hover {
            background-color: rgba(0, 102, 255, 0.1);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px 20px;
            max-height: 300px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Responsible Gambling */
        .responsible-gambling {
            padding: 80px 0;
            background-color: rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .rg-icon {
            font-size: 4rem;
            color: var(--bright-yellow);
            margin-bottom: 20px;
        }

        .rg-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .rg-content p {
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }

        .rg-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .rg-link {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .rg-link:hover {
            background-color: var(--neon-blue);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-logo h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--bright-yellow);
        }

        .footer-links {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--bright-yellow);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        .age-restriction {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bright-yellow);
            color: var(--dark-blue);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 1.2rem;
            margin-left: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .casino-card {
                flex-direction: column;
            }
            
            .casino-logo {
                flex: 0 0 auto;
                padding: 20px;
            }
            
            .about-content {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark-blue);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 15px 0;
            }
            
            .banner h1 {
                font-size: 2.5rem;
            }
            
            .advantages ul {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .banner h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .casino-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
               :root {
            --neon-blue: #0066ff;
            --bright-yellow: #ffdd00;
            --dark-blue: #001233;
            --light-blue: #00a8ff;
            --light-gray: #f5f5f5;
            --dark-gray: #333;
            --white: #ffffff;
            --black: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--dark-blue);
            color: var(--white);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: rgba(0, 18, 51, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
            padding: 15px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--bright-yellow);
            text-decoration: none;
        }

        .logo i {
            margin-right: 10px;
            color: var(--neon-blue);
            font-size: 2rem;
        }

        .logo span {
            color: var(--white);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav ul li a:hover {
            color: var(--bright-yellow);
            background-color: rgba(0, 102, 255, 0.2);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--white);
        }

        /* Content Styles */
        .policy-content {
            padding: 140px 0 80px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--white);
            text-shadow: 0 0 10px rgba(0, 102, 255, 0.7);
        }

        .page-header .subtitle {
            font-size: 1.2rem;
            color: #aaa;
            max-width: 700px;
            margin: 0 auto;
        }

        .last-updated {
            text-align: center;
            color: var(--bright-yellow);
            margin-bottom: 40px;
            font-style: italic;
        }

        .policy-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 102, 255, 0.2);
        }

        .policy-section h2 {
            color: var(--bright-yellow);
            margin-bottom: 20px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
        }

        .policy-section h2 i {
            margin-right: 15px;
            color: var(--neon-blue);
        }

        .policy-section p {
            margin-bottom: 20px;
            color: #ccc;
        }

        .policy-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .policy-section ul li {
            margin-bottom: 10px;
            color: #ccc;
        }

        .policy-section strong {
            color: var(--white);
        }

        .back-button {
            display: inline-block;
            background: rgba(0, 102, 255, 0.2);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 30px;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            background: var(--neon-blue);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-logo h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--bright-yellow);
        }

        .footer-links {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--bright-yellow);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        .age-restriction {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bright-yellow);
            color: var(--dark-blue);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 1.2rem;
            margin-left: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark-blue);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 15px 0;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .policy-section {
                padding: 25px;
            }
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .policy-section h2 {
                font-size: 1.5rem;
            }
        }
        :root {
            --neon-blue: #0066ff;
            --bright-yellow: #ffdd00;
            --dark-blue: #001233;
            --light-blue: #00a8ff;
            --light-gray: #f5f5f5;
            --dark-gray: #333;
            --white: #ffffff;
            --black: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--dark-blue);
            color: var(--white);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: rgba(0, 18, 51, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
            padding: 15px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--bright-yellow);
            text-decoration: none;
        }

        .logo i {
            margin-right: 10px;
            color: var(--neon-blue);
            font-size: 2rem;
        }

        .logo span {
            color: var(--white);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav ul li a:hover {
            color: var(--bright-yellow);
            background-color: rgba(0, 102, 255, 0.2);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--white);
        }

        /* Content Styles */
        .terms-content {
            padding: 140px 0 80px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--white);
            text-shadow: 0 0 10px rgba(0, 102, 255, 0.7);
        }

        .page-header .subtitle {
            font-size: 1.2rem;
            color: #aaa;
            max-width: 700px;
            margin: 0 auto;
        }

        .last-updated {
            text-align: center;
            color: var(--bright-yellow);
            margin-bottom: 40px;
            font-style: italic;
        }

        .terms-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 102, 255, 0.2);
        }

        .terms-section h2 {
            color: var(--bright-yellow);
            margin-bottom: 20px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
        }

        .terms-section h2 i {
            margin-right: 15px;
            color: var(--neon-blue);
        }

        .terms-section p {
            margin-bottom: 20px;
            color: #ccc;
        }

        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .terms-section ul li {
            margin-bottom: 10px;
            color: #ccc;
        }

        .terms-section ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .terms-section ol li {
            margin-bottom: 10px;
            color: #ccc;
        }

        .terms-section strong {
            color: var(--white);
        }

        .highlight-box {
            background: rgba(0, 102, 255, 0.1);
            border-left: 4px solid var(--bright-yellow);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        .back-button {
            display: inline-block;
            background: rgba(0, 102, 255, 0.2);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 30px;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            background: var(--neon-blue);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-logo h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--bright-yellow);
        }

        .footer-links {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--bright-yellow);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        .age-restriction {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bright-yellow);
            color: var(--dark-blue);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 1.2rem;
            margin-left: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark-blue);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 15px 0;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .terms-section {
                padding: 25px;
            }
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .terms-section h2 {
                font-size: 1.5rem;
            }
        }
         :root {
            --neon-blue: #0066ff;
            --bright-yellow: #ffdd00;
            --dark-blue: #001233;
            --light-blue: #00a8ff;
            --light-gray: #f5f5f5;
            --dark-gray: #333;
            --white: #ffffff;
            --black: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--dark-blue);
            color: var(--white);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: rgba(0, 18, 51, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
            padding: 15px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--bright-yellow);
            text-decoration: none;
        }

        .logo i {
            margin-right: 10px;
            color: var(--neon-blue);
            font-size: 2rem;
        }

        .logo span {
            color: var(--white);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav ul li a:hover {
            color: var(--bright-yellow);
            background-color: rgba(0, 102, 255, 0.2);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--white);
        }

        /* Content Styles */
        .cookies-content {
            padding: 140px 0 80px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--white);
            text-shadow: 0 0 10px rgba(0, 102, 255, 0.7);
        }

        .page-header .subtitle {
            font-size: 1.2rem;
            color: #aaa;
            max-width: 700px;
            margin: 0 auto;
        }

        .last-updated {
            text-align: center;
            color: var(--bright-yellow);
            margin-bottom: 40px;
            font-style: italic;
        }

        .cookies-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 102, 255, 0.2);
        }

        .cookies-section h2 {
            color: var(--bright-yellow);
            margin-bottom: 20px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
        }

        .cookies-section h2 i {
            margin-right: 15px;
            color: var(--neon-blue);
        }

        .cookies-section p {
            margin-bottom: 20px;
            color: #ccc;
        }

        .cookies-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .cookies-section ul li {
            margin-bottom: 10px;
            color: #ccc;
        }

        .cookies-section strong {
            color: var(--white);
        }

        .cookies-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }

        .cookies-table th, .cookies-table td {
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 15px;
            text-align: left;
        }

        .cookies-table th {
            background-color: rgba(0, 102, 255, 0.2);
            color: var(--bright-yellow);
            font-weight: 600;
        }

        .cookies-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.03);
        }

        .cookies-type {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 5px;
        }

        .essential {
            background-color: rgba(0, 255, 0, 0.1);
            color: #00ff00;
        }

        .analytics {
            background-color: rgba(0, 102, 255, 0.1);
            color: var(--neon-blue);
        }

        .preferences {
            background-color: rgba(255, 221, 0, 0.1);
            color: var(--bright-yellow);
        }

        .cookie-controls {
            background: rgba(0, 102, 255, 0.1);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }

        .cookie-controls h3 {
            color: var(--bright-yellow);
            margin-bottom: 15px;
        }

        .back-button {
            display: inline-block;
            background: rgba(0, 102, 255, 0.2);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 30px;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            background: var(--neon-blue);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-logo h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--bright-yellow);
        }

        .footer-links {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--bright-yellow);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        .age-restriction {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bright-yellow);
            color: var(--dark-blue);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 1.2rem;
            margin-left: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark-blue);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 15px 0;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .cookies-section {
                padding: 25px;
            }
            
            .cookies-table {
                display: block;
                overflow-x: auto;
            }
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .cookies-section h2 {
                font-size: 1.5rem;
            }
        }