html {
    height: 100%;
}

body {
    background-image: linear-gradient(to bottom, black, #333);
    background-attachment: fixed; 
    background-repeat: no-repeat; 
    min-height: 100%; 
    color: white; 
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 50px 0;
} 

h1 {
    font-size: 3em;
}

nav ul {
    list-style-type: none;
    text-align: center;
    padding: 0;
}

nav li {
    display: inline-block;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    text-align: center;
    padding: 20px;
}

nav {
    background-image: linear-gradient(to bottom, #1a1a1a, #0d0d0d); 
    padding: 10px 0; 
    border-bottom: 1px solid #333; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); 
}


nav ul {
    list-style-type: none; 
    text-align: center;
    margin: 0;
    padding: 0;
}


nav li {
    display: inline-block; 
    margin: 0 25px; 
}


nav a {
    color: white; 
    text-decoration: none; 
    font-size: 1.1em; 
    font-weight: bold;
    text-transform: uppercase; 
    padding: 10px 0; 
    transition: color 0.3s ease; 
}


nav a:hover {
    color: #aaa; 
}

.logo-container {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 20px; 
}


.logo {
    max-width: 150px; 
    height: auto; 
    margin-bottom: 10px; 
    border-radius: 10px;
}


.server-name {
    font-size: 3.5em; 
    color: white; 
    margin: 0; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}


.orange-text {
    color: #FFA500;
}

@keyframes blue-pulse {
    0% {
        color: white;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        color: #00BFFF; 
        text-shadow: 0 0 15px #00BFFF; 
    }
    100% {
        color: white;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
}


.blinking-link {
    animation: blue-pulse 2s infinite; 
}

.player-space-button {
    background-color: #007bff; 
    color: white;
    padding: 8px 15px; 
    border: 2px solid #007bff; 
    border-radius: 5px; 
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease; 
    margin-left: 10px; 
}


.player-space-button:hover {
    background-color: transparent; 
    color: #007bff; 
    border-color: #007bff; 
}

.login-container {
    max-width: 450px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.login-container h2 {
    color: white;
    font-size: 2em;
    margin-bottom: 30px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    color: #ccc;
    font-size: 1em;
    margin-bottom: 8px;
}

.form-group input {
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #007bff;
}

.login-button {
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #0056b3;
}

.form-links {
    margin-top: 15px;
    font-size: 0.9em;
    color: #aaa;
}

.form-links a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.form-links a:hover {
    text-decoration: underline;
}

.form-links span {
    margin: 0 10px;
    color: #555;
}

.admin-link {
    color: #555;
}

.admin-link:hover {
    color: #aaa;
}

.password-feedback {
    margin-top: -15px;
    margin-bottom: 20px;
    text-align: left;
}

.password-feedback ul {
    list-style: none;
    padding-left: 0;
}

.password-feedback li {
    color: #888;
    transition: color 0.3s ease;
}

.password-feedback li.valid {
    color: #32CD32;
}

.password-feedback li::before {
    display: inline-block;
    width: 1em;
    margin-right: 5px;
}

.password-feedback li.invalid::before {
    content: "❌";
    color: #ff6347;
}

.password-feedback li.valid::before {
    content: "✅";
    color: #32CD32;
}
.login-button-link {
    display: inline-block;
    background-color: #2196f3; 
    color: white; 
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none; 
    font-weight: bold;
    margin-top: -10px; 
    transition: background-color 0.3s ease;
}

.login-button-link:hover {
    background-color: #1565c0; 
}