body {
    cursor: url('cursor.png'), auto;
    font-family: 'Press Start 2P', cursive;
    background-color: #1e1e1e;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 2rem;
    text-align: center;
    margin-top: 20%;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.timer {
    font-size: 5rem;
    text-shadow: #1e1e1e 5px 5px 2px;
    margin-bottom: 20px;
    background: #4a4599;
    padding: 20px;
    border: 4px solid #000;
    border-radius: 50px;
    box-shadow: 5px 5px 0px #000;
}

h1 {
    font-size: 6rem;
    margin-bottom: 20px;
    text-shadow: #1e1e1e 5px 5px 2px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #280bca;
}

.buttons {
    margin-top: 20px;
}

button {
    font-family: inherit;
    font-size: 2rem;
    padding: 10px 20px;
    margin: 5px;
    border: 3px solid #000;
    border-radius: 50px;
    background: #6b6ef5;
    color: #fff;
    cursor: pointer;
    box-shadow: 3px 3px 0px #000;
    transition: all 0.4s;
    text-shadow: #1e1e1e 2px 2px 2px;
}

button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #000;
}

.status {
    margin-top: 10px;
    font-size: 2rem;
    color: #ffffff;
    text-shadow: #1e1e1e 2px 2px 2px;
}

.pixelify-sans-regular {
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.pixelify-sans-bold {
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    .timer {
        font-size: 3rem;
        padding: 15px;
    }
    .buttons {
        flex-direction: column;
        gap: 5px;
    }
    button {
        font-size: 1.5rem;
        padding: 8px 15px;
    }
    .status {
        font-size: 1.5rem;
    }
}
