﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Tajawal', 'Cairo', 'Inter', 'Poppins', system-ui, sans-serif;
            background: #000;
            color: #fff;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        [dir="ltr"] body {
            font-family: 'Inter', 'Poppins', 'Tajawal', system-ui, sans-serif;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .terms-header {
            text-align: center;
            margin-bottom: 60px;
            padding-top: 40px;
        }

        .terms-header h1 {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, #34d399, #22d3ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }

        .terms-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
        }

        .terms-content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 50px;
            backdrop-filter: blur(10px);
        }

        .terms-section {
            margin-bottom: 40px;
        }

        .terms-section h2 {
            font-size: 28px;
            color: #34d399;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .terms-section h3 {
            font-size: 22px;
            color: #22d3ee;
            margin: 24px 0 16px;
            font-weight: 600;
        }

        .terms-section p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 16px;
            line-height: 1.9;
        }

        .terms-section ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .terms-section ul li {
            padding: 12px 0 12px 32px;
            position: relative;
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
        }

        .terms-section ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #34d399;
            font-weight: 700;
            font-size: 18px;
        }

        .highlight-box {
            background: rgba(52, 211, 153, 0.1);
            border-left: 4px solid #34d399;
            padding: 20px;
            border-radius: 12px;
            margin: 24px 0;
        }

        .highlight-box p {
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #10b981, #34d399);
            color: #000;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 40px;
        }

        .back-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
        }

        .last-updated {
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }


