*, *::before, *::after { box-sizing: border-box; }

:root {
    --bg-panel: rgba(8, 8, 20, 0.75);
    --border: rgba(255, 255, 255, 0.1);
    --text: #f0f0f8;
    --muted: #9093a8;
    --accent: #7eb8f7;
    --accent-hover: #b8d8ff;
}

html, body {
    margin: 0; padding: 0;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: #050510 url("/images/bg.galaxy.jpg") center center / cover fixed no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 18, 0.5);
    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
    width: 1060px;
    max-width: calc(100vw - 2rem);
    padding: 2.25rem 2.5rem 2rem;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.65);
}

h2 {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin: 0 0 0.65rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li { margin-bottom: 0.35rem; }
ul li:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

footer a { color: rgba(255, 255, 255, 0.3); }
footer a:hover { color: var(--accent); text-decoration: none; }
