body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: #2F3136;
    overflow: hidden;
    position: relative;
}

.background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    font-size: 24px;
    z-index: 5;
    user-select: none;
}

.cogwheel {
    position: absolute;
    width: 80px;
    height: 80px;
    fill: #8B4513;
    z-index: 10;
}

.spark {
    position: absolute;
    background-color: #FFD700;
    border-radius: 50%;
    pointer-events: none;
    z-index: 20;
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}
