        html {
            scroll-behavior: smooth;
        }  

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0a0a1a;
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .terms-page {
            position: relative;
            min-height: 100vh;
            padding: 2rem;
        }

        .terms-page::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1555068170-2dfbfd47b8f9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -1;
            opacity: 0.1;
        }

        .terms-page::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to bottom, transparent, #0a0a1a);
            z-index: -1;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 10, 26, 0.95);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ff4081;
            text-shadow: 0 0 10px rgba(255, 64, 129, 0.7);
        }

        .nav-center {
            display: flex;
            justify-content: center;
            flex: 1;
            margin: 0 2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        .nav-links li {
            margin: 0;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.6s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            white-space: nowrap;
        }

        .nav-links a:hover {
            background-color: #ff4081;
            color: #0a0a1a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
        }

        .nav-auth {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .auth-btn {
            padding: 0.6rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.6s ease;
            text-decoration: none;
            text-align: center;
            white-space: nowrap;
        }

        .login-btn {
            background: transparent;
            color: #ffffff;
            border: 2px solid #00bcd4;
        }

        .login-btn:hover {
            background: rgba(0, 188, 212, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
        }

        .register-btn {
            background: linear-gradient(45deg, #ff4081, #e91e63);
            color: white;
            border: 2px solid transparent;
        }

        .register-btn:hover {
            background: linear-gradient(45deg, #e91e63, #ff4081);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
        }

        .terms-container {
            max-width: 1000px;
            margin: 6rem auto 2rem;
            z-index: 1;
        }

        .terms-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .terms-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ff4081, #00bcd4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(255, 64, 129, 0.5);
        }

        .terms-header p {
            font-size: 1.2rem;
            color: #e0e0e0;
        }

        .toc {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 3rem;
            backdrop-filter: blur(10px);
            border-left: 4px solid #00bcd4;
        }

        .toc h2 {
            color: #ff4081;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .toc ul {
            list-style: none;
        }

        .toc li {
            margin-bottom: 0.5rem;
        }

        .toc a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.6s ease;
            display: block;
            padding: 0.3rem 0;
        }

        .toc a:hover {
            color: #ff4081;
            transform: translateX(5px);
        }

        .terms-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            transition: transform 0.6s ease;
        }

        .terms-section:hover {
            /* transform: translateY(-5px); */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid rgba(0, 188, 212, 0.3);
        }

        .section-icon {
            font-size: 2rem;
            margin-right: 1rem;
            color: #00bcd4;
        }

        .section-title {
            font-size: 1.8rem;
            color: #ff4081;
        }

        .section-content {
            color: #e0e0e0;
        }

        .section-content h3 {
            color: #00bcd4;
            margin: 1.5rem 0 1rem;
            font-size: 1.3rem;
        }

        .section-content p {
            margin-bottom: 1rem;
        }

        .section-content ul {
            margin: 1rem 0 1rem 2rem;
        }

        .section-content li {
            margin-bottom: 0.5rem;
            position: relative;
        }

        .section-content li::before {
            content: '▸';
            color: #00bcd4;
            position: absolute;
            left: -1rem;
        }

        .highlight-box {
            background: rgba(255, 64, 129, 0.1);
            border: 1px solid #ff4081;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }

        .warning-box {
            background: rgba(255, 193, 7, 0.1);
            border: 1px solid #ffc107;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }

        .info-box {
            background: rgba(0, 188, 212, 0.1);
            border: 1px solid #00bcd4;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            margin: 0.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.6s ease;
            text-decoration: none;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ff4081, #e91e63);
            color: white;
            box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 64, 129, 0.6);
            background: linear-gradient(45deg, #e91e63, #ff4081);
        }

        .btn-secondary {
            background: linear-gradient(45deg, #00bcd4, #03a9f4);
            color: white;
            box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
        }

        .btn-secondary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 188, 212, 0.6);
            background: linear-gradient(45deg, #03a9f4, #00bcd4);
        }

        .action-buttons {
            text-align: center;
            margin-top: 3rem;
            margin-bottom: 0rem;
        }

        footer {
            background-color: #12122a;
            padding: 3rem 2rem;
            text-align: center;
            /* margin-top: 4rem; */
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: #e0e0e0;
            margin: 0 1rem;
            text-decoration: none;
            transition: color 0.6s ease;
        }

        .footer-links a:hover {
            color: #ff4081;
        }

        .copyright {
            color: #888;
            font-size: 0.9rem;
            user-select: none;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .terms-section {
            animation: fadeInUp 0.6s ease-out;
        }

        .terms-section:nth-child(odd) {
            border-left: 4px solid #ff4081;
        }

        .terms-section:nth-child(even) {
            border-left: 4px solid #00bcd4;
        }

        @media (max-width: 768px) {
            .nav-center {
                display: none;
            }

            .terms-header h1 {
                font-size: 2.2rem;
            }

            .terms-container {
                margin-top: 4rem;
            }

            .terms-section {
                padding: 1.5rem;
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .section-icon {
                margin-bottom: 0.5rem;
            }

            .action-buttons {
                display: flex;
                flex-direction: column;
            }

            .btn {
                width: 100%;
                margin: 0.5rem 0;
            }
        }

        @media (max-width: 480px) {
            .terms-page {
                padding: 1rem;
            }
            
            .terms-header {
                padding: 1.5rem;
            }
            .nav-auth {
                gap: 0.5rem;
            }
            
            .auth-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }
        }