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

body {
        font-family: "Raleway", sans-serif;
        background: #05070d;
        color: #c8d0dc;
        line-height: 1.8;
}

.background {
        position: fixed;
        inset: 0;
        background: radial-gradient(circle at top,
                        #293241 0%,
                        #111827 40%,
                        #05070d 100%);
        z-index: -1;
}

.legal-container {
        max-width: 900px;
        margin: 40px auto;
        padding: 20px;
        position: relative;
}

.back-link {
        display: inline-block;
        margin-bottom: 30px;
        padding: 10px 22px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: #cbd5e1;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: 0.3s;
}

.back-link:hover {
        color: white;
        border-color: rgba(212, 175, 55, 0.5);
        background: rgba(255, 255, 255, 0.1);
        text-decoration: none;
}

header {
        border-bottom: 1px solid #d4af37;
        margin-bottom: 30px;
        padding-bottom: 20px;
}

h1 {
        font-size: 42px;
        color: #d4af37;
        margin-bottom: 10px;
}

header p {
        color: #94a3b8;
}

h2 {
        margin-top: 40px;
        margin-bottom: 10px;
        color: #f9fafb;
        font-size: 28px;
}

p {
        margin-bottom: 1rem;
}

a {
        color: #7dd3fc;
        text-decoration: none;
        transition: color 0.2s;
}

a:hover {
        color: #facc15;
        text-decoration: underline;
}

nav {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 18px;
        margin-bottom: 40px;
}

nav strong {
        font-size: 18px;
        color: white;
        display: block;
        margin-bottom: 15px;
}

nav ol {
        list-style-position: inside;
        padding-left: 5px;
}

nav li {
        margin-bottom: 8px;
}

nav li a {
        color: #c8d0dc;
}

footer {
        margin-top: 40px;
        border-top: 1px solid #1f2937;
        padding-top: 20px;
        color: #94a3b8;
        font-size: 0.9em;
}

@media (max-width: 768px) {
        h1 {
                font-size: 32px;
        }

        h2 {
                font-size: 24px;
        }

        .legal-container {
                margin-top: 20px;
                padding: 15px;
        }
}