body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #808080;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #222;
    color: #fff;
    padding: 16px 32px;
}
.navbar-brand {
    font-size: 1.5em;
    letter-spacing: 2px;
    font-weight: bold;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #444;
    color: white;
    padding: 10px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-family: "DM Serif Text", serif;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #cacaca;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    font-family: "DM Serif Text", serif;
    border-radius:4px;
}

.dropdown-content a {
    color: #222;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
    border-radius:4px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #555;
}

main {
    padding: 20px;
    text-align: center;
    flex: 1;
}

.Welcome {
    font-size: 3em;
    font-family: "DM Serif Text", serif;
}

.updates {
    font-size: 1.2em;
    margin-top: 20px;
    font-family: "DM Serif Text", serif;
    background-color: #9494945b;
    color: #222;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.music {
    font-family: "DM Serif Text", serif;
}

.version-highlight {
    color: #000000;
    background: #5e5e5e;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 900;
    letter-spacing: 1px;
    margin-right: 8px;
    box-shadow: 0 1px 4px rgba(211,84,0,0.08);
}

.site-footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 16px 0;
    margin-top: 40px;
    font-family: Arial, sans-serif;
}

.site-footer a {
    color: #ff5500;
    text-decoration: none;
    margin: 0 8px;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer div {
    display: inline-block;
}
#sc-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

#sc-url {
    padding: 10px 16px;
    border: 1px solid #aaa;
    border-radius: 8px;
    font-size: 1em;
    font-family: "DM Serif Text", serif;
    outline: none;
    transition: border-color 0.2s;
    width: 320px;
    background: #f8f8f8;
}

#sc-url:focus {
    border-color: #ff5500;
    background: #fff;
}

#sc-form button {
    padding: 10px 24px;
    background: #ff5500;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-family: "DM Serif Text", serif;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

#sc-form button:hover {
    background: #e04a00;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.sleek-game-btn {
    margin: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    background: #444;
    color: #fff;
    border: none;
    font-size: 1em;
    font-family: "DM Serif Text", serif;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.sleek-game-btn:hover {
    background: #555;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}