@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
    /* Uses your uploaded image as the fixed, full-screen background */
    background-image: url('image_a7aee9.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    
    font-family: 'VT323', monospace;
    color: #e0e0e0;
    font-size: 1.45rem;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 750px;
    width: 100%;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    color: #ffffff;
    font-size: 4rem;
    margin-bottom: 5px;
    text-shadow: 4px 4px 0px #3f3f3f;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.8rem;
    color: #ffff55; /* Minecraft Yellow */
    text-shadow: 2px 2px 0px #3f3f3f;
}

section {
    /* Transparent panels so the uploaded background peeks through */
    background-color: rgba(44, 44, 44, 0.9);
    border: 4px solid #1e1e1e;
    box-shadow: inset -4px -4px 0px #111, inset 4px 4px 0px #4a4a4a;
    padding: 25px;
    margin-bottom: 30px;
}

h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-top: 0;
    text-shadow: 2px 2px 0px #000;
    border-bottom: 4px dashed #4a4a4a;
    padding-bottom: 10px;
}

ul, ol {
    padding-left: 30px;
    line-height: 1.4;
}

li {
    margin-bottom: 12px;
    text-shadow: 2px 2px 0px #111;
}

.green-text { color: #55ff55; }
.aqua-text { color: #55ffff; }
.gold-text { color: #ffaa00; }

code {
    background-color: #111;
    padding: 2px 8px;
    color: #ff5555;
    font-family: inherit;
}

/* Download Block & Minecraft Buttons */
.download-box {
    text-align: center;
    background-color: rgba(26, 26, 26, 0.95);
}

.download-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 2rem;
    color: #e0e0e0;
    text-shadow: 2px 2px 0px #2a2a2a;
    padding: 12px 35px;
    width: 80%;
    box-sizing: border-box;
    background-color: #7c7c7c;
    border: 4px solid #000000;
    box-shadow: inset -4px -4px 0px #5c5c5c, inset 4px 4px 0px #aeaeae;
    cursor: pointer;
    image-rendering: pixelated;
}

.download-btn:hover {
    color: #ffff55;
    background-color: #8c8c8c;
    box-shadow: inset -4px -4px 0px #6c6c6c, inset 4px 4px 0px #bebebe;
}

.download-btn:active {
    box-shadow: inset 4px 4px 0px #5c5c5c, inset -4px -4px 0px #aeaeae;
}

.version-info {
    font-size: 1.2rem;
    color: #aaa;
    margin-top: 15px;
    text-shadow: 1px 1px 0px #000;
}

/* Past versions dropdown styling */
.past-versions-container {
    margin-top: 20px;
    font-size: 1.2rem;
}

.past-label {
    color: #aaa;
    text-shadow: 1px 1px 0px #000;
}

#past-versions-select {
    background-color: #4a4a4a;
    color: #fff;
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    padding: 4px 10px;
    border: 2px solid #2e2e2e;
    box-shadow: inset -2px -2px 0px #333, inset 2px 2px 0px #777;
    cursor: pointer;
    outline: none;
}

#past-versions-select:hover {
    background-color: #5a5a5a;
}

footer {
    text-align: center;
    font-size: 1.1rem;
    color: #eee;
    text-shadow: 2px 2px 0px #000;
    margin-top: 40px;
}
