html {
    background-color: #424242;
    font-family: "Courier New","Courier","Lucida Console",monospace;
    color: white;
}

body {
    margin: 0px;
    padding: 0px;
}

/* Index brand page: full-viewport centered layout */
.center-stage {
    margin: 0px;
    padding: 0px;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.box {
    padding: 0px;
    margin: 0px;
}

/* Document pages (e.g. privacy policy): centered content column */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.card {
    background: #4f4f4f;
    border: 1px solid #5e5e5e;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

h1 {
    color: #ffffff;
    margin-bottom: 10px;
}

h2 {
    color: #f0f0f0;
    margin-top: 30px;
    margin-bottom: 10px;
}

p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
}

ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

li {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 8px;
}

.updated {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.notice {
    background: #2f4034;
    border-left: 5px solid #16a34a;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #5e5e5e;
    color: #b0b0b0;
    font-size: 0.9rem;
}

a {
    color: #7db6ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .card {
        padding: 25px;
    }
}
