*, *::before, *::after { 
    box-sizing: border-box; 
}

body {
    background: #020617;
    color: #fff;
    font-family: 'Inter', sans-serif;
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    min-height: 100vh; 
    margin: 0;
    text-align: center; 
    overflow: hidden;
    user-select: none;
    transition: background 0.15s;
}

#particles { 
    position: fixed; 
    inset: 0; 
    z-index: 0; 
    pointer-events: none; 
}

.back-home { 
    position: fixed; 
    top: 20px; 
    left: 24px; 
    font-size: 0.85rem; 
    color: #475569; 
    text-decoration: none; 
    transition: color 0.2s; 
    z-index: 10; 
}

.back-home:hover { 
    color: #fff; 
}

.container { 
    position: relative; 
    z-index: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    padding: 40px 24px; 
    max-width: 600px; 
    width: 100%; 
}

h1 { 
    font-family: 'Syne', sans-serif; 
    font-size: clamp(2rem, 8vw, 3rem); 
    font-weight: 900; 
    margin: 0 0 6px; 
    letter-spacing: -2px; 
}

.subtitle { 
    font-size: 0.95rem; 
    color: #64748b; 
    margin-bottom: 48px; 
}

.big-time {
    font-family: 'Syne', sans-serif;
    font-size: clamp(5rem, 20vw, 9rem);
    font-weight: 900; 
    line-height: 1;
    letter-spacing: -4px; 
    margin-bottom: 8px;
    color: #f8fafc;
    min-height: 1.1em;
}

.time-unit { 
    font-size: 1rem; 
    color: #475569; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 40px; 
}

/* Click Zone */
.click-zone {
    width: 220px; 
    height: 220px; 
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.25);
    border: 2px solid rgba(96, 165, 250, 0.25);
    display: flex; 
    align-items: center; 
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.1s;
    margin-bottom: 36px;
}

.click-zone:hover { 
    background: rgba(37, 99, 235, 0.35); 
    border-color: rgba(96, 165, 250, 0.5); 
}

.click-zone:active { 
    transform: scale(0.96); 
}

.click-zone.waiting { 
    background: rgba(239, 68, 68, 0.25); 
    border-color: rgba(239, 68, 68, 0.4); 
}

.click-zone.go { 
    background: rgba(16, 185, 129, 0.35); 
    border-color: #10b981; 
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.3); 
    animation: pulse 0.4s ease; 
}

@keyframes pulse { 
    0%, 100% { transform: scale(1); } 
    50% { transform: scale(1.04); } 
}

.zone-label { 
    font-family: 'Syne', sans-serif; 
    font-size: 1.1rem; 
    font-weight: 700; 
    color: #64748b; 
    pointer-events: none; 
    transition: color 0.15s; 
}

.click-zone.go .zone-label { 
    color: #fff; 
}

.click-zone.waiting .zone-label { 
    color: #f87171; 
}

.status { 
    font-size: 0.95rem; 
    color: #475569; 
    min-height: 22px; 
    margin-bottom: 28px; 
}

.status.good { 
    color: #10b981; 
}

.status.bad { 
    color: #f87171; 
}

/* Results Table */
.results {
    width: 100%;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(51, 65, 85, 0.7);
    border-radius: 18px; 
    padding: 20px 24px;
    backdrop-filter: blur(14px);
}

.results-title { 
    font-size: 0.7rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: #475569; 
    margin-bottom: 14px; 
}

.result-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 8px 0; 
    border-bottom: 1px solid rgba(51, 65, 85, 0.35); 
    font-size: 0.9rem; 
}

.result-row:last-child { 
    border-bottom: none; 
}

.result-label { 
    color: #64748b; 
}

.result-val { 
    font-family: 'Syne', sans-serif; 
    font-weight: 700; 
    color: #60a5fa; 
}

.result-val.gold { 
    color: #fbbf24; 
}

.result-empty { 
    color: #334155; 
    font-size: 0.85rem; 
}
