* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #000000;
            color: #ffffff;
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .language-bar {
            background: #0a0a0a;
            border-bottom: 1px solid #1a1a1a;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(20px);
        }

        .language-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .language-selector {
            position: relative;
        }

        .language-dropdown {
            background: #0f0f0f;
            border: 1px solid #262626;
            color: #8ab4f8;
            padding: 10px 40px 10px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            appearance: none;
            outline: none;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .language-dropdown:hover {
            border-color: #404040;
            background: #151515;
        }

        .language-dropdown:focus {
            border-color: #4a7cbb;
        }

        .language-selector::after {
            content: '▼';
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #8ab4f8;
            font-size: 10px;
        }

        .terms-hero {
            padding: 120px 24px 100px;
            text-align: center;
            background: #000000;
            border-bottom: 1px solid #0f0f0f;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 64px;
            font-weight: 300;
            color: #ffffff;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
        }

        .hero-subtitle {
            font-size: 16px;
            color: #6b8bb3;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #0a0a0a;
            padding: 12px 24px;
            border-radius: 6px;
            color: #8ab4f8;
            font-size: 13px;
            border: 1px solid #1a1a1a;
            font-weight: 500;
        }

        .terms-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 100px 24px;
        }

        .terms-nav {
            background: #0a0a0a;
            border: 1px solid #1a1a1a;
            border-radius: 8px;
            padding: 40px;
            margin-bottom: 80px;
        }

        .terms-nav h2 {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 28px;
            color: #ffffff;
            letter-spacing: -0.01em;
        }

        .nav-list {
            list-style: none;
            display: grid;
            gap: 4px;
        }

        .nav-list a {
            color: #6b8bb3;
            text-decoration: none;
            font-size: 14px;
            display: block;
            transition: all 0.15s ease;
            padding: 12px 16px;
            border-radius: 4px;
            font-weight: 400;
        }

        .nav-list a:hover {
            background: #0f0f0f;
            color: #8ab4f8;
        }

        .terms-section {
            margin-bottom: 80px;
            scroll-margin-top: 100px;
        }

        .terms-section h2 {
            font-size: 32px;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 28px;
            letter-spacing: -0.02em;
            padding-bottom: 20px;
            border-bottom: 1px solid #1a1a1a;
        }

        .terms-section h3 {
            font-size: 20px;
            font-weight: 500;
            color: #ffffff;
            margin: 40px 0 20px;
            letter-spacing: -0.01em;
        }

        .terms-section p {
            color: #7b95b5;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .terms-section ul, .terms-section ol {
            margin-left: 28px;
            margin-bottom: 20px;
            color: #7b95b5;
        }

        .terms-section li {
            margin-bottom: 12px;
            padding-left: 8px;
            line-height: 1.8;
            font-size: 15px;
        }

        .info-box {
            background: #0a0f14;
            border-left: 2px solid #4a7cbb;
            padding: 24px 28px;
            border-radius: 4px;
            margin: 32px 0;
        }

        .info-box p {
            color: #8ab4f8;
            margin: 0;
            font-size: 14px;
        }

        .warning-box {
            background: #0f0f0a;
            border-left: 2px solid #7b8a4d;
            padding: 24px 28px;
            border-radius: 4px;
            margin: 32px 0;
        }

        .warning-box p {
            color: #9eae6b;
            margin: 0;
            font-size: 14px;
        }

        .contact-section {
            background: #0a0a0a;
            border-radius: 8px;
            padding: 60px 48px;
            text-align: center;
            margin-top: 80px;
            border: 1px solid #1a1a1a;
        }

        .contact-section h2 {
            font-size: 28px;
            font-weight: 400;
            margin-bottom: 16px;
            border: none;
            padding: 0;
            color: #ffffff;
        }

        .contact-section p {
            color: #6b8bb3;
            margin-bottom: 32px;
            font-size: 15px;
        }

        .contact-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #ffffff;
            color: #000000;
            padding: 14px 32px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
            font-size: 14px;
        }

        .contact-button:hover {
            background: #e6e6e6;
            transform: translateY(-1px);
        }

        .footer {
            background: #000000;
            color: #4a4a4a;
            text-align: center;
            padding: 60px 24px;
            margin-top: 100px;
            border-top: 1px solid #0f0f0f;
        }

        .footer p {
            margin: 0;
            font-size: 13px;
            font-weight: 400;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 42px;
            }

            .terms-container {
                padding: 60px 20px;
            }

            .terms-nav {
                padding: 28px;
            }

            .contact-section {
                padding: 40px 28px;
            }
        }