body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    /* background: linear-gradient(135deg, #18191a 0%, #232526 100%); */
    min-height: 100vh;
    color: #f3f3f3;
}

nav {
    width: 100vw;
    background: #232526;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0.5em 0;
    position: sticky;
    top: 0;
    z-index: 10;
}
nav .menu {
    display: flex;
    justify-content: center;
    gap: 2em;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav .menu li {
    display: inline-block;
}
nav .menu a {
    color: #8ecae6;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    padding: 0.3em 0.7em;
    border-radius: 6px;
    transition: background 0.2s;
}
nav .menu a:hover {
    background: #414345;
}

.container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.center-image {
    max-width: 90vw;
    max-height: 60vh;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    background: #fff;
}

footer {
    text-align: center;
    padding: 1.5em 0 1em 0;
    font-size: 1em;
    color: #aaa;
}

footer a {
    color: #8ecae6;
    text-decoration: none;
    font-weight: bold;
}
footer a:hover {
    text-decoration: underline;
}

.terms {
    max-width: 600px;
    margin: 2em auto;
    background: rgba(30, 30, 30, 0.8);
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.terms h1 {
    margin-top: 0;
    color: #8ecae6;
}

.terms a {
    display: inline-block;
    margin-top: 2em;
    color: #8ecae6;
    text-decoration: none;
    font-weight: bold;
}
.terms a:hover {
    text-decoration: underline;
}
