body
{
    margin: 0;
    overflow: hidden;
    background-color: #333;
    font-family: 'Arial', sans-serif;
}

.title 
{
    font-size: 5em;
    letter-spacing: 5px;
    color: white;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    animation: titleEntrance 3s ease forwards;
}

#backgroundContainer
{
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url("../../assets/widgets/cuttingboard.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

#loadingScreen 
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: black;
    background-size: cover;
    background-position: center;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.menu-buttons 
{
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    pointer-events: auto;
}
.menu-button 
{
    padding: 20px 40px;
    font-size: 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, background 0.3s ease;
}

.menu-button:hover 
{
    transform: translateY(-3px);
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.menu-button:hover
{
    transform: translateY(-3px);
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.button-enter
{
    opacity: 1;
    transform: translateX(0);
}

.video-container 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: none;
}

.background-video,
.cutscene-video 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}