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

html, body {
    height: 100%;
    background: #16130E;
    color: #B8B0A2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mark {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #F2C74B;
    border: none;
    cursor: pointer;
    display: block;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.mark:hover, .mark:focus-visible {
    transform: scale(1.6);
    box-shadow: 0 0 0 10px rgba(242, 199, 75, 0.08);
    outline: none;
}

.quiet {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.quiet .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F2C74B;
}

.quiet a, .quiet button {
    background: none;
    border: none;
    font: inherit;
    color: #6E675B;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.quiet a:hover, .quiet button:hover { color: #B8B0A2; }
