  :root {
            --neon-red: #ff003c;
            --neon-red-glow: #ff0055;
            --bright-yellow: #ffde00;
            --yellow-glow: #ffea00;
            --dark-bg: #0a0a0a;
            --gray-dark: #1a1a1a;
            --gray-light: #f5f5f5;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            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(10, 10, 10, 0.95);
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 0, 60, 0.3);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 800;
            color: var(--white);
            text-shadow: 0 0 10px var(--neon-red);
        }

        .logo span:first-child {
            color: var(--neon-red);
        }

        .logo span:last-child {
            color: var(--bright-yellow);
        }

        .logo-icon {
            font-size: 28px;
            color: var(--neon-red);
            filter: drop-shadow(0 0 5px var(--neon-red));
        }

        .back-btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: var(--bright-yellow);
            color: var(--dark-bg);
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
            text-decoration: none;
        }

        .back-btn:hover {
            background-color: var(--neon-red);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Main Content */
        .privacy-content {
            padding: 80px 0;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            border-radius: 2px;
        }

        .section {
            margin-bottom: 40px;
        }

        .section h2 {
            color: var(--bright-yellow);
            margin-bottom: 20px;
            font-size: 1.8rem;
            border-left: 4px solid var(--neon-red);
            padding-left: 15px;
        }

        .section p {
            margin-bottom: 15px;
            color: #ddd;
        }

        .section ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }

        .section li {
            margin-bottom: 10px;
            color: #ddd;
        }

        .highlight {
            background-color: rgba(255, 0, 60, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--bright-yellow);
            margin: 30px 0;
        }

        .contact-info {
            margin-top: 50px;
            padding: 30px;
            background-color: rgba(255, 0, 60, 0.05);
            border-radius: 15px;
            text-align: center;
        }

        .contact-info h3 {
            color: var(--bright-yellow);
            margin-bottom: 20px;
        }

        /* Footer */
        footer {
            background-color: #000;
            padding: 40px 0 20px;
            border-top: 1px solid rgba(255, 0, 60, 0.3);
            margin-top: 50px;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-logo span:first-child {
            color: var(--neon-red);
        }

        .footer-logo span:last-child {
            color: var(--bright-yellow);
        }

        .footer-links {
            list-style-type: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            text-decoration: none;
            color: #ddd;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--bright-yellow);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .section h2 {
                font-size: 1.5rem;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
        }

        @media (max-width: 576px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .section h2 {
                font-size: 1.3rem;
            }
            
            .highlight {
                padding: 15px;
            }
        }
          :root {
            --neon-red: #ff003c;
            --neon-red-glow: #ff0055;
            --bright-yellow: #ffde00;
            --yellow-glow: #ffea00;
            --dark-bg: #0a0a0a;
            --gray-dark: #1a1a1a;
            --gray-light: #f5f5f5;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 16px;
        }

        .btn-primary {
            background-color: var(--bright-yellow);
            color: var(--dark-bg);
            box-shadow: 0 0 15px rgba(255, 222, 0, 0.4);
        }

        .btn-primary:hover {
            background-color: var(--neon-red);
            color: var(--white);
            box-shadow: 0 0 20px rgba(255, 0, 60, 0.7);
            transform: translateY(-3px);
        }

        /* Header Styles */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 0, 60, 0.3);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 800;
            color: var(--white);
            text-shadow: 0 0 10px var(--neon-red);
        }

        .logo span:first-child {
            color: var(--neon-red);
        }

        .logo span:last-child {
            color: var(--bright-yellow);
        }

        .logo-icon {
            font-size: 28px;
            color: var(--neon-red);
            filter: drop-shadow(0 0 5px var(--neon-red));
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-menu a {
            position: relative;
            padding: 5px 0;
            font-weight: 600;
        }

        .nav-menu a:hover {
            color: var(--bright-yellow);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
        }

        /* Banner Styles */
        .banner {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), 
                        url('ban.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
            position: relative;
        }

        .banner-content {
            max-width: 900px;
            padding: 20px;
        }

        .banner h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.7);
        }

        .banner h1 span {
            color: var(--bright-yellow);
        }

        .banner p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: #ddd;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .neon-text {
            color: var(--neon-red);
            text-shadow: 0 0 10px var(--neon-red-glow);
        }

        .yellow-text {
            color: var(--bright-yellow);
            text-shadow: 0 0 10px var(--yellow-glow);
        }

        /* Casinos Section */
        .casinos-section {
            padding: 100px 0;
            background-color: var(--dark-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            border-radius: 2px;
        }

        .casinos-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .casino-card {
            background: linear-gradient(145deg, rgba(255, 0, 60, 0.05), rgba(255, 222, 0, 0.05));
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(255, 0, 60, 0.2);
            transition: var(--transition);
            display: flex;
            flex-wrap: wrap;
        }

        .casino-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 0, 60, 0.2);
            border-color: var(--neon-red);
        }

        .casino-logo {
            flex: 0 0 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background-color: rgba(0, 0, 0, 0.7);
        }

        .casino-logo img {
            max-width: 200px;
            max-height: 100px;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
        }

        .casino-content {
            flex: 1;
            padding: 30px;
            min-width: 300px;
        }

        .casino-name {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--bright-yellow);
        }

        .advantages-list {
            list-style-type: none;
            margin-bottom: 25px;
        }

        .advantages-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .advantages-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--bright-yellow);
            font-weight: bold;
        }

        .bonus-btn-container {
            display: flex;
            justify-content: flex-end;
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background-color: var(--gray-dark);
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content h2 {
            margin-bottom: 30px;
        }

        .about-content p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #ddd;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background-color: var(--dark-bg);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255, 0, 60, 0.3);
        }

        .faq-question {
            padding: 20px;
            background-color: rgba(255, 0, 60, 0.05);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .faq-question:hover {
            background-color: rgba(255, 0, 60, 0.1);
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            background-color: rgba(0, 0, 0, 0.3);
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* Responsible Gambling */
        .rg-section {
            padding: 80px 0;
            background-color: var(--gray-dark);
            text-align: center;
        }

        .rg-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .rg-icon {
            font-size: 3rem;
            color: var(--neon-red);
            margin-bottom: 20px;
            filter: drop-shadow(0 0 10px var(--neon-red));
        }

        .rg-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }

        .rg-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background-color: rgba(255, 0, 60, 0.1);
            border-radius: 50px;
            transition: var(--transition);
        }

        .rg-link:hover {
            background-color: rgba(255, 0, 60, 0.2);
            transform: translateY(-5px);
        }

        /* Footer */
        footer {
            background-color: #000;
            padding: 60px 0 20px;
            border-top: 1px solid rgba(255, 0, 60, 0.3);
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-logo span:first-child {
            color: var(--neon-red);
        }

        .footer-logo span:last-child {
            color: var(--bright-yellow);
        }

        .footer-links {
            list-style-type: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a:hover {
            color: var(--bright-yellow);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            z-index: 9999;
            border-top: 2px solid var(--neon-red);
            display: none;
        }

        .cookie-content {
            flex: 1;
            min-width: 300px;
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
        }

        .cookie-btn {
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }

        .cookie-btn.accept {
            background-color: var(--bright-yellow);
            color: var(--dark-bg);
        }

        .cookie-btn.decline {
            background-color: transparent;
            color: var(--white);
            border: 1px solid var(--neon-red);
        }

        .cookie-btn.accept:hover {
            background-color: var(--neon-red);
            color: var(--white);
        }

        .cookie-btn.decline:hover {
            background-color: rgba(255, 0, 60, 0.2);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .banner h1 {
                font-size: 2.8rem;
            }
            
            .casino-card {
                flex-direction: column;
            }
            
            .casino-logo {
                flex: none;
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 20px;
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.5s ease, opacity 0.5s ease;
                z-index: 999;
            }
            
            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .banner h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .banner h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .casino-content {
                padding: 20px;
            }
        }
          :root {
            --neon-red: #ff003c;
            --neon-red-glow: #ff0055;
            --bright-yellow: #ffde00;
            --yellow-glow: #ffea00;
            --dark-bg: #0a0a0a;
            --gray-dark: #1a1a1a;
            --gray-light: #f5f5f5;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            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(10, 10, 10, 0.95);
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 0, 60, 0.3);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 800;
            color: var(--white);
            text-shadow: 0 0 10px var(--neon-red);
        }

        .logo span:first-child {
            color: var(--neon-red);
        }

        .logo span:last-child {
            color: var(--bright-yellow);
        }

        .logo-icon {
            font-size: 28px;
            color: var(--neon-red);
            filter: drop-shadow(0 0 5px var(--neon-red));
        }

        .back-btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: var(--bright-yellow);
            color: var(--dark-bg);
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
            text-decoration: none;
        }

        .back-btn:hover {
            background-color: var(--neon-red);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Main Content */
        .terms-content {
            padding: 80px 0;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            border-radius: 2px;
        }

        .section {
            margin-bottom: 40px;
        }

        .section h2 {
            color: var(--bright-yellow);
            margin-bottom: 20px;
            font-size: 1.8rem;
            border-left: 4px solid var(--neon-red);
            padding-left: 15px;
        }

        .section h3 {
            color: var(--bright-yellow);
            margin: 25px 0 15px;
            font-size: 1.4rem;
        }

        .section p {
            margin-bottom: 15px;
            color: #ddd;
        }

        .section ul, .section ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }

        .section li {
            margin-bottom: 10px;
            color: #ddd;
        }

        .warning-box {
            background-color: rgba(255, 0, 60, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--neon-red);
            margin: 30px 0;
        }

        .info-box {
            background-color: rgba(255, 222, 0, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--bright-yellow);
            margin: 30px 0;
        }

        /* Footer */
        footer {
            background-color: #000;
            padding: 40px 0 20px;
            border-top: 1px solid rgba(255, 0, 60, 0.3);
            margin-top: 50px;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-logo span:first-child {
            color: var(--neon-red);
        }

        .footer-logo span:last-child {
            color: var(--bright-yellow);
        }

        .footer-links {
            list-style-type: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            text-decoration: none;
            color: #ddd;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--bright-yellow);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .section h2 {
                font-size: 1.5rem;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
        }

        @media (max-width: 576px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .section h2 {
                font-size: 1.3rem;
            }
            
            .warning-box, .info-box {
                padding: 15px;
            }
        }
         :root {
            --neon-red: #ff003c;
            --neon-red-glow: #ff0055;
            --bright-yellow: #ffde00;
            --yellow-glow: #ffea00;
            --dark-bg: #0a0a0a;
            --gray-dark: #1a1a1a;
            --gray-light: #f5f5f5;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            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(10, 10, 10, 0.95);
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 0, 60, 0.3);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 800;
            color: var(--white);
            text-shadow: 0 0 10px var(--neon-red);
        }

        .logo span:first-child {
            color: var(--neon-red);
        }

        .logo span:last-child {
            color: var(--bright-yellow);
        }

        .logo-icon {
            font-size: 28px;
            color: var(--neon-red);
            filter: drop-shadow(0 0 5px var(--neon-red));
        }

        .back-btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: var(--bright-yellow);
            color: var(--dark-bg);
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
            text-decoration: none;
        }

        .back-btn:hover {
            background-color: var(--neon-red);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Main Content */
        .cookies-content {
            padding: 80px 0;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            border-radius: 2px;
        }

        .section {
            margin-bottom: 40px;
        }

        .section h2 {
            color: var(--bright-yellow);
            margin-bottom: 20px;
            font-size: 1.8rem;
            border-left: 4px solid var(--neon-red);
            padding-left: 15px;
        }

        .section h3 {
            color: var(--bright-yellow);
            margin: 25px 0 15px;
            font-size: 1.4rem;
        }

        .section p {
            margin-bottom: 15px;
            color: #ddd;
        }

        .section ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }

        .section li {
            margin-bottom: 10px;
            color: #ddd;
        }

        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }

        .cookie-table th {
            background-color: rgba(255, 0, 60, 0.2);
            color: var(--bright-yellow);
            padding: 15px;
            text-align: left;
            font-weight: 700;
        }

        .cookie-table td {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cookie-table tr:last-child td {
            border-bottom: none;
        }

        .cookie-type {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-right: 10px;
        }

        .essential {
            background-color: rgba(255, 0, 60, 0.2);
            color: var(--neon-red);
        }

        .analytics {
            background-color: rgba(255, 222, 0, 0.2);
            color: var(--bright-yellow);
        }

        .functional {
            background-color: rgba(0, 200, 255, 0.2);
            color: #00c8ff;
        }

        .control-box {
            background-color: rgba(255, 0, 60, 0.1);
            padding: 25px;
            border-radius: 15px;
            margin: 40px 0;
            border: 1px solid rgba(255, 0, 60, 0.3);
        }

        .browser-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        .browser-item {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
        }

        /* Footer */
        footer {
            background-color: #000;
            padding: 40px 0 20px;
            border-top: 1px solid rgba(255, 0, 60, 0.3);
            margin-top: 50px;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-logo span:first-child {
            color: var(--neon-red);
        }

        .footer-logo span:last-child {
            color: var(--bright-yellow);
        }

        .footer-links {
            list-style-type: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            text-decoration: none;
            color: #ddd;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--bright-yellow);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .section h2 {
                font-size: 1.5rem;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .browser-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .section h2 {
                font-size: 1.3rem;
            }
            
            .control-box {
                padding: 15px;
            }
        }