body {
    /* Using your Bliss hill image as the background */
    background-image: url('bliss 600dpi.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    font-family: 'Tahoma', sans-serif; /* The classic XP font */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

/* Positioning your mascot in the corner */
.moth-mascot {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 250px;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.3));
    z-index: 10;
}

/* Styling the window to match the blue XP bar */
.xp-window {
    width: 400px;
    background-color: #ECE9D8; /* Classic beige window color */
    border: 3px solid #0055EA;
    border-radius: 8px 8px 0 0;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.5);
}

.title-bar {
    background: linear-gradient(to bottom, #0058e6 0%, #0055ea 10%, #0146af 100%);
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px 5px 0 0;
}

.title-text {
    color: white;
    font-weight: bold;
    font-size: 13px;
    text-shadow: 1px 1px #000;
}

.close-button {
    background: #E81123;
    color: white;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    font-size: 10px;
    border: 1px solid white;
    border-radius: 2px;
}

.window-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.warning-icon {
    width: 50px;
    margin-bottom: 10px;
}

.ok-btn {
    margin-top: 15px;
    padding: 5px 25px;
    border: 1px solid #000;
    background: #eee;
    box-shadow: inset -1px -1px #888, inset 1px 1px #fff;
    cursor: pointer;
}

.ok-btn:active {
    box-shadow: inset 1px 1px #888, inset -1px -1px #fff;
}