@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    background-color: rgba(44, 44, 44, 0.85);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    width: 90%;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #00ffcc;
}

p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 100%;
    text-shadow: 0 0 8px rgba(0, 255, 204, 0.8);
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

button {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: #00ffcc;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.7);
}

button:hover {
    background-color: #00e6b8;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.9);
}

button:active {
    background-color: #00cca3;
    box-shadow: 0 0 35px rgba(0, 255, 204, 1);
}

.timer {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 14px;
    color: #00ffcc;
    opacity: 0.8;
}
