        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #0a0a0f;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #00d4ff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .back-btn {
            background: transparent;
            color: #00d4ff;
            border: 2px solid #00d4ff;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: #00d4ff;
            color: white;
        }

        /* Main Content */
        main {
            margin-top: 100px;
            padding: 40px 0;
            background: #0f0f1a;
            min-height: calc(100vh - 100px);
        }

        .terms-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem 0;
            background: rgba(255,255,255,0.02);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .terms-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .terms-header p {
            color: rgba(255,255,255,0.7);
            font-size: 1.1rem;
        }

        .terms-content {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 3rem;
            margin-bottom: 2rem;
        }

        .terms-content h2 {
            color: #00d4ff;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            margin-top: 2rem;
        }

        .terms-content h2:first-child {
            margin-top: 0;
        }

        .terms-content h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            margin-top: 1.5rem;
        }

        .terms-content p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .terms-content ul, .terms-content ol {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        .terms-content li {
            color: rgba(255,255,255,0.8);
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .terms-content strong {
            color: #00d4ff;
            font-weight: 600;
        }

        .important-notice {
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .important-notice h3 {
            color: #ff6b35;
            margin-bottom: 0.5rem;
        }

        .important-notice p {
            margin-bottom: 0;
        }

        .contact-info {
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .contact-info h3 {
            color: #00d4ff;
            margin-bottom: 0.5rem;
        }

        .contact-info p {
            margin-bottom: 0;
        }

        .contact-info a {
            color: #00d4ff;
            text-decoration: none;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        .table-container {
            overflow-x: auto;
            margin: 1rem 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            overflow: hidden;
        }

        th, td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        th {
            background: rgba(0, 212, 255, 0.2);
            color: #00d4ff;
            font-weight: 600;
        }

        td {
            color: rgba(255,255,255,0.8);
        }

        /* Footer */
        footer {
            background: #0a0a0f;
            padding: 2rem 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }

        .footer-content {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #00d4ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        /* Table of Contents */
        .toc {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .toc h3 {
            color: #00d4ff;
            margin-bottom: 1rem;
        }

        .toc ol {
            margin-left: 1rem;
        }

        .toc a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .toc a:hover {
            color: #00d4ff;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                padding: 0 15px;
            }

            .logo {
                font-size: 1.5rem;
            }

            .terms-header h1 {
                font-size: 2rem;
            }

            .terms-content {
                padding: 2rem 1.5rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            table {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .terms-header h1 {
                font-size: 1.8rem;
            }

            .terms-content {
                padding: 1.5rem 1rem;
            }
        }