@charset "UTF-8";
/* CSS Document */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0a0a0a;
    color: #ccc;
    line-height: 1.6;
    display: flex;
    justify-content: center;
}

.legal-container {
    max-width: 800px;
    margin: 50px 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(255, 85, 0, 0.1);
    border: 1px solid rgba(255, 85, 0, 0.1);
}

h1 {
    font-size: 2.5em;
    background: linear-gradient(90deg, #ff3c00, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

h2 {
    color: #ff7a00;
    border-bottom: 1px solid rgba(255, 120, 0, 0.2);
    padding-bottom: 10px;
    margin-top: 40px;
}

h3 {
    color: #fff;
}

section {
    margin-bottom: 20px;
}

a {
    color: #ff7a00;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #ffb347;
    text-shadow: 0 0 10px rgba(255, 85, 0, 0.5);
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
}

footer {
    margin-top: 50px;
    font-size: 0.8em;
    opacity: 0.4;
    text-align: center;
}
