:root {
    --bg-color: #f8fbff;
    --text-dark: #0f1c2e;
    --primary-green: #3bc25e;
    --light-green-bg: #e6f6eb;
    --logo-green: #2db34a;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--logo-green);
    background: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-style: italic;
}

.record {
    text-align: right;
}

.record-label {
    display: block;
    font-size: 0.8rem;
    color: #8898aa;
    font-weight: 600;
    margin-bottom: 4px;
}

.record-value {
    display: block;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -2rem; /* visually center better */
}

.instruction-banner {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.highlight-green {
    color: var(--primary-green);
    border-bottom: 4px solid var(--primary-green);
    padding-bottom: 2px;
}

.counter-display {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 11rem;
    line-height: 1;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
    /* Simulate the '0' with slash if requested, but for now standard font */
}

.sub-instruction {
    color: #556677;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.sub-instruction-small {
    color: #8898aa;
    font-size: 0.8rem;
    margin-bottom: 2.5rem;
}

.buzz-button {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 18px 80px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(59, 194, 94, 0.4);
    transition: transform 0.1s, box-shadow 0.1s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buzz-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(59, 194, 94, 0.5);
}

.buzz-button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(59, 194, 94, 0.4);
}

/* Background Decorations */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #e6f6eb 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #fff8e1 0%, rgba(255,255,255,0) 70%);
    bottom: -200px;
    right: -200px;
}
