/* Добавляем стили для body на страницах Privacy и Terms */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: var(--gradient-2);
    display: flex;
    flex-direction: column;
}

.legal-container {
    flex: 1;
    width: 100%;
    max-width: 800px;
    margin: 1rem auto;
    padding: 1.5rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, #b19cd9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 2rem;
}

section {
    margin-bottom: 2rem;
}

h2 {
    color: #b19cd9;
    margin-bottom: 1rem;
}

ul {
    margin-left: 1.5rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Обновляем медиа-запросы */
@media (max-width: 768px) {
    .legal-container {
        margin: 0.5rem;
        padding: 1rem;
        border-radius: 15px;
    }

    .legal-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .back-button {
        margin-top: 1.5rem;
        width: 100%;
        justify-content: center;
    }
} 