@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #1a0a2e;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.legal-back-link {
    display: inline-block;
    color: #38ef7d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    transition: opacity 0.2s;
}

.legal-back-link:hover {
    opacity: 0.8;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.legal-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-top: 36px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

h3 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 20px;
    margin-bottom: 8px;
}

p {
    margin-bottom: 12px;
    font-size: 15px;
}

ul {
    margin-bottom: 12px;
    padding-left: 24px;
}

li {
    margin-bottom: 6px;
    font-size: 15px;
}

strong {
    color: #fff;
    font-weight: 600;
}

.legal-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.legal-footer p {
    margin-bottom: 4px;
    font-size: 13px;
}

@media (max-width: 480px) {
    .legal-container {
        padding: 24px 16px 60px;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }
}
