:root {
            --primary-color: #00ffff;
            --secondary-color: #9932cc;
            --dark-bg: #0a0a0a;
            --light-text: #ffffff;
            --gray-text: #e0e0e0;
            --card-bg: rgba(30, 30, 30, 0.8);
            --border-color: rgba(153, 50, 204, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(153, 50, 204, 0.5);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-shadow: 0 0 10px var(--primary-color);
            transition: all 0.3s ease;
        }

        .logo:hover {
            text-shadow: 0 0 15px var(--primary-color), 0 0 25px var(--primary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light-text);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Main Content */
        main {
            padding-top: 100px;
            min-height: 100vh;
        }

        .page-header {
            padding: 50px 0;
            background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('../img/20.webp');
            background-size: cover;
            background-position: center;
            text-align: center;
        }

        .page-header h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-shadow: 0 0 10px var(--primary-color);
        }

        .terms-content {
            padding: 50px 0;
            background-color: rgba(20, 20, 20, 0.8);
        }

        .terms-section {
            margin-bottom: 40px;
        }

        .terms-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .terms-section h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--secondary-color);
        }

        .terms-section p {
            margin-bottom: 15px;
            color: var(--gray-text);
        }

        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: var(--gray-text);
        }

        .terms-section ul li {
            margin-bottom: 10px;
        }

        /* Footer */
        footer {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 50px 0 20px;
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: var(--gray-text);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-contact p {
            color: var(--gray-text);
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--gray-text);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 10, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            }

            nav ul.show {
                transform: translateY(0);
            }

            nav ul li {
                margin: 15px 0;
            }

            .burger {
                display: block;
                z-index: 1001;
            }

            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active div:nth-child(2) {
                opacity: 0;
            }

            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .page-header h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
        }

