* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
}

nav {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
}

nav .logo {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d9ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

nav .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav .nav-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav .nav-links a:hover {
    border-bottom: 2px solid #00d9ff;
    color: #00d9ff;
}

.legal-header {
    padding: 80px 40px 40px;
    background: linear-gradient(135deg, #1a0033 0%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.legal-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d9ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-header p {
    font-size: 14px;
    color: #888;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #e8e8e8;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.legal-content p {
    font-size: 15px;
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
    color: #b8b8b8;
    font-size: 15px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: #00d9ff;
}

footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    padding: 40px;
    text-align: center;
    color: #666;
    font-size: 13px;
}

footer a {
    color: #00d9ff;
    text-decoration: none;
    margin: 0 16px;
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 36px;
    }

    nav .nav-links {
        gap: 16px;
        font-size: 12px;
    }
}

