:root {
    --green-dark: #062b1f;
    --green: #0f3d2e;
    --green-light: #14513d;
    --gold: #d8b36a;
    --text: #f5f0e6;
    --muted: #d7d1c5;
}

body {
    margin: 0;
    font-family: Georgia, serif;
    color: var(--text);
    background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 40%), linear-gradient(180deg, var(--green-light) 0%, var(--green) 40%, var(--green-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.box {
    text-align: center;
    padding: 60px 40px;
    border: 1px solid rgba(216,179,106,0.25);
    border-radius: 20px;
    background: rgba(0,0,0,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    max-width: 700px;
}

h1 {
    margin: 0;
    font-size: 72px;
    letter-spacing: 1px;
}

.subtitle {
    margin-top: 15px;
    font-size: 24px;
    color: var(--muted);
}

.divider {
    margin: 30px auto;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.note {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

.button {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(180deg,#e1bf7b,#b7904d);
    color: #1c160d;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.15s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.footer {
    margin-top: 30px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

@media (max-width:600px) {
    h1 {
        font-size: 44px;
    }

    .subtitle {
        font-size: 20px;
    }
}
