body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    font-family: sans-serif;
}
#wallpaper {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
#status-overlay {
    position: fixed;
    top: 10px;
    left: 10px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 1000;
}
#settingsButton {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 999;
    background-color: rgba(50, 50, 50, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 22px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
#settingsButton:hover {
    background-color: rgba(0, 0, 0, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 1px rgba(255,255,255,0.8);
}
#settingsHoverTrigger {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 998;
}
#settingsButtonLabel {
    position: fixed;
    top: 23px;
    left: 62px;
    padding: 7px 12px;
    background-color: rgba(30, 30, 30, 0.95);
    color: white;
    border-radius: 5px;
    font-size: 13px;
    font-family: sans-serif;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
#closeFormButton {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}
#closeFormButton:hover {
    color: #333;
}
.plash-button {
    display: inline-block;
    padding: 8px 15px;
    margin-bottom: 15px;
    background-color: #007aff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    text-align: center;
    transition: background-color 0.2s ease;
}
.plash-button:hover {
    background-color: #005ecb;
    color: white;
}
#input-container ol {
    text-align: left;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
}
#input-container ol li {
    margin-bottom: 10px;
    line-height: 1.4;
}
#input-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255,255,255,0.95);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 1001;
    text-align: center;
    min-width: 350px;
}
#input-container h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}
#input-container label {
    display: block;
    margin-top: 15px;
    text-align: left;
    font-weight: bold;
    color: #444;
    font-size: 0.9em;
}
#input-container input[type="text"],
#input-container input[type="password"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
#input-container button {
    margin-top: 25px;
    padding: 12px 25px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}
#input-container button:hover {
    background-color: #0056b3;
}
.api-key-hint {
    font-size: 0.8em;
    font-weight: normal;
    margin-left: 5px;
}
#input-error {
    color: #f00;
    font-size: 0.8em;
    margin-top: 5px;
}
.hidden {
    display: none !important;
}
