body
{
    margin: 0;
    overflow: hidden;
    background-color: #333;
    font-family: 'Arial', sans-serif;
}

.loading-screen
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image: url("../../assets/ui/background_test.png");
    background-repeat: no-repeat;
    background-size: cover;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.menu-buttons
{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.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.5s ease, background 0.3s ease;
}

.menu-button:hover
{
    transform: translateY(-3px);
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.game-container
{
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url("../../assets/ui/cuttingboard.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#gameCanvas
{
    position: absolute;
    top: 0;
    left: 0;
}

.game-button
{
    position: absolute;
    top: 25px;
    left: 20px;
    padding: 15px 30px;
    font-size: 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #e74c3c;
    color: white;
    display: block;
    z-index: 20000;
}

.game-button:hover
{
    background-color: #c0392b;
}

.score-display
{
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 32px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 15px 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn
{
    0% { transform: translateY(-30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes dropIn
{
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.title
{
    font-size: 5em;
    letter-spacing: 5px;
    animation: dropIn 1s forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.slash-effect
{
    width: 2400px;
    height: 2400px;
    margin-right: -1400px;
    background: url("../../assets/ui/katana.png") no-repeat center center;
    background-size: contain;
    opacity: 0;
    transition: opacity 1.5s ease, transform 0.75s ease;
}

.button-enter
{
    opacity: 1;
    transform: translateX(0);
}

#backgroundContainer
{
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url("../../assets/ui/cuttingboard.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
