        .terms-container {
            position: relative;
            z-index: 10;
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
            padding: 40px 20px;
            overflow-y: auto;
            max-height: 100vh;
        }

        .terms-container h1 {
            font-size: 32px;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 600;
            animation: introFade 1.2s ease-out;
        }

        .terms-container h2 {
            font-size: 20px;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .terms-container h3 {
            font-size: 16px;
            margin-top: 20px;
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .terms-container p {
            margin: 12px 0;
            line-height: 1.6;
            color: var(--text-primary);
            font-size: 14px;
        }

        .terms-container ol {
            margin: 15px 0;
            padding-left: 25px;
        }

        .terms-container ol li {
            margin: 10px 0;
            line-height: 1.6;
            color: var(--text-primary);
            font-size: 14px;
        }

        .terms-container ul {
            margin: 15px 0;
            padding-left: 25px;
        }

        .terms-container ul li {
            margin: 8px 0;
            line-height: 1.6;
            color: var(--text-primary);
            font-size: 14px;
        }

        .terms-section {
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .terms-section:last-child {
            border-bottom: none;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            top: 20px;
            left: 20px;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            z-index: 100;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            background: rgba(0, 0, 0, 0.6);
            transform: scale(1.05);
        }

        body.light-theme .back-button {
            background: rgba(0, 0, 0, 0.05);
            border-color: rgba(0, 0, 0, 0.1);
        }

        body.light-theme .back-button:hover {
            background: rgba(0, 0, 0, 0.1);
        }

        .scroll-indicator {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(28, 28, 30, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 20;
        }

        .scroll-indicator:hover {
            background: rgba(28, 28, 30, 0.9);
            border-color: rgba(255, 255, 255, 0.4);
        }

        @media (max-width: 768px) {
            .terms-container {
                padding: 20px 15px;
            }

            .terms-container h1 {
                font-size: 24px;
            }

            .terms-container h2 {
                font-size: 16px;
            }

            .terms-container p,
            .terms-container ol li,
            .terms-container ul li {
                font-size: 13px;
            }
        }