
#wizardWrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#wizardBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}

#wizardOverlay {
    position: relative;
    z-index: 2; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    color: white;
    text-shadow: 2px 2px 4px black;
    padding: 20px;
}

#wizardOverlay h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

#wizardOverlay h4 {
    font-size: 22px;
    margin: 5px 0;
}

#wizardButtons {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}


#wizardButtons a.fight-button {
    display: inline-block;
    padding: 16px 32px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.75);
    border: 3px solid #222;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

#wizardButtons a.fight-button:hover {
    background-color: rgba(50, 0, 150, 0.9);
    transform: scale(1.05);
}

#wizardWrapper iframe#inventory {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 280px;
    height: 130px;
    background-color: rgba(255, 255, 255, 0.85); 
    border: 3px solid #333;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    z-index: 10;
}

#wizardWrapper iframe#inventory body {
    font-size: 16px;
    color: black;
}

hr {
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}
#doorButtons {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10; 
    display: block;
}
#doorButtons button {
    margin: 0 5%;
    padding: 10px 20px;
    font-size: 18px;
}


