        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #533a71 100%);
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem 0;
        }

        .header h1 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
            background: linear-gradient(45deg, #ffffff, #e1bee7, #ce93d8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header .subtitle {
            font-size: 1.1rem;
            opacity: 0.8;
            font-weight: 300;
        }

        .terms-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(225, 190, 231, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .terms-content {
            max-height: 70vh;
            overflow-y: auto;
            padding-right: 1rem;
        }

        .terms-content::-webkit-scrollbar {
            width: 8px;
        }

        .terms-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .terms-content::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
        }

        .terms-content::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .section {
            margin-bottom: 2.5rem;
        }

        .section h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #e1bee7;
            border-bottom: 2px solid rgba(225, 190, 231, 0.3);
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section h3 {
            font-size: 1.2rem;
            font-weight: 500;
            margin: 1.5rem 0 0.8rem 0;
            color: #ce93d8;
        }

        .section p {
            margin-bottom: 1rem;
            opacity: 0.9;
            text-align: justify;
        }

        .section ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .section li {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .highlight-box {
            background: rgba(156, 39, 176, 0.2);
            border-left: 4px solid #9c27b0;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }

        .warning-box {
            background: rgba(103, 58, 183, 0.2);
            border-left: 4px solid #673ab7;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }

        .checkmark {
            color: #ab47bc;
            margin-right: 0.5rem;
        }

        .footer-section {
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 2rem;
        }

        .version-info {
            opacity: 0.7;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(156, 39, 176, 0.2);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(225, 190, 231, 0.3);
            backdrop-filter: blur(10px);
        }

        .back-button:hover {
            background: rgba(156, 39, 176, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(156, 39, 176, 0.3);
        }

        .icon {
            margin-right: 0.5rem;
        }

        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            .header h1 {
                font-size: 2rem;
            }

            .terms-card {
                padding: 2rem 1.5rem;
            }

            .terms-content {
                max-height: 60vh;
            }

            .section h2 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.8rem;
            }

            .terms-card {
                padding: 1.5rem 1rem;
            }

            .section h2 {
                font-size: 1.2rem;
            }
        }
