/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NEON BACKGROUND */
body {
    font-family: Poppins, sans-serif;
    background: radial-gradient(circle at top, #05010a, #000);
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;
    padding: 20px;
}

/* GLASS CONTAINER */
.container {
    width: 100%;
    max-width: 700px;

    padding: 35px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);

    box-shadow:
        0 0 25px rgba(0, 200, 255, 0.4),
        0 0 60px rgba(0, 150, 255, 0.3) inset;

    text-align: center;
}

/* TITLE */
h1 {
    font-size: 2.6rem;
    color: #00eaff;
    text-shadow: 0 0 18px #00eaff;
    margin-bottom: 10px;
}

.subtitle {
    color: #ccc;
    margin-bottom: 25px;
}

/* SCORE SECTION */
.score-section {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.score-box {
    flex: 1;
    padding: 20px;

    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.4);
    border-radius: 12px;

    box-shadow: 0 0 12px rgba(0, 200, 255, 0.4);
}

.score-box h2 {
    font-size: 1rem;
    color: #a7f7ff;
}

.score {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 0 15px #00eaff;
}

/* TIMER */
.timer-section {
    padding: 18px;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;

    border: 1px solid rgba(0, 200, 255, 0.3);
}

.timer {
    font-size: 3.5rem;
    color: #00eaff;
    text-shadow: 0 0 20px #00eaff;
}

/* BUTTON SECTION */
.button-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* CLICK BUTTON */
.click-btn {
    padding: 25px;
    border-radius: 16px;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;

    background: linear-gradient(135deg, #ff0080, #ff0055);
    color: #fff;

    box-shadow:
        0 0 20px rgba(255, 0, 120, 0.7),
        0 0 40px rgba(255, 0, 120, 0.5);

    transition: 0.25s ease;
}

.click-btn:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.05);
}

.click-btn:disabled {
    background: #555;
    box-shadow: none;
    cursor: not-allowed;
}

/* MAIN BUTTONS */
.main-btn {
    padding: 15px;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    cursor: pointer;

    background: linear-gradient(135deg, #00eaff, #006eff);
    color: white;

    box-shadow:
        0 0 15px rgba(0, 200, 255, 0.7);

    transition: 0.25s ease;
}

.main-btn:hover {
    transform: scale(1.05);
}

/* RESET BUTTON */
.reset-btn {
    background: #ff4444;
    color: white;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.reset-btn:hover {
    background: #ff2222;
}

/* STATUS MESSAGE */
.status-message {
    margin-top: 20px;
    padding: 12px;

    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(0, 200, 255, 0.25);
    color: #8feaff;

    font-size: 1.2rem;
}
