/* .game-container {
    display: flex;
    align-items: center;
    justify-content: center;

}

.btn {
    width: 15rem;
    height: 15rem;


}

.c1 {
    background-color: #F4B342;
    border-top-left-radius: 50%;
}

.c2 {
    background-color: #5A7ACD;
    border-bottom-left-radius: 50%;

}

.c3 {
    background-color: #F39EB6;


    border-top-right-radius: 50%;
}

.c4 {
    background-color: #8F0177;
    border-bottom-right-radius: 50%;
}
.white{
    background-color: white;
} */



/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* BODY */
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #1d2671, #c33764);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

/* TITLE */
h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* STATUS TEXT */
p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* GAME CONTAINER */
.game-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ROWS */
.game-container > div {
    display: flex;
    gap: 15px;
}

/* BUTTONS */
.btn {
    border: 5px solid black;
    width: 140px;
    height: 140px;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* COLORS */
.c1 { background: #e74c3c; }  /* red */
.c2 { background: #3498db; }  /* blue */
.c3 { background: #f1c40f; }  /* yellow */
.c4 { background: #2ecc71; }  /* green */

/* CLICK EFFECT */
.btn:active {
    transform: scale(0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* BLINK (JS ADDS THIS) */
.white {
    background: #fff !important;
    box-shadow: 0 0 30px #fff;
}

/* GAME OVER EFFECT (OPTIONAL) */
.game-over {
    background: linear-gradient(135deg, #000000, #434343);
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 600px) {
    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .btn {
        width: 100px;
        height: 100px;
        border-radius: 15px;
    }
}
