:root {
    --navy: #0b1f2a;
    --green: #a8c3a0;
    --green-dark: #789875;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;

    background: var(--navy);
    color: var(--green);

    font-family: Arial, Helvetica, sans-serif;

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

.container {
    width: 90%;
    max-width: 600px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.counter-card {
    padding: 3rem 2rem;

    border: 1px solid var(--green-dark);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.03);
}

.counter-label {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.count {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.status {
    margin-top: 1.5rem;
    min-height: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}
