body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #e6f7ff;
    background-image: url('../src/bg.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: normal;
}

nav {
    width: 100%;
    background-color: rgba(0, 119, 182, 0.8);
    color: white;
    padding: 10px 0;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(5px);
}

.logo {
    margin-left: 20px;
    font-size: 24px;
    font-weight: bold;
    background-color: rgba(2, 62, 138, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 5px;
}

.logo:hover {
    background-color: rgba(2, 46, 106, 0.8);
    transform: scale(1.05);
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

nav a:hover {
    background-color: rgba(0, 150, 199, 0.8);
    transform: scale(1.1);
}

.content {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin-top: 80px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
    color: #005f73;
}

.content p {
    color: #023e8a;
}

.buttons {
    margin-top: 20px;
}

.buttons a {
    display: inline-block;
    margin: 10px;
    padding: 15px 20px;
    font-size: 1em;
    color: white;
    background-color: #0096c7;
    text-decoration: none;
    border-radius: 5px;
    white-space: nowrap;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.buttons a:hover {
    background-color: #0077b6;
    transform: scale(1.05);
}

.hover-box {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hover-box:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Windows 10 Style Textbox */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
    z-index: 1000;
}

.modal-header {
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-content {
    font-size: 18px;
    margin-bottom: 20px;
}

.modal-close {
    background-color: #0077b6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: #005f73;
}

.language-switcher {
    margin-right: 20px;
}

.language-switcher select {
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.8);
    color: #023e8a;
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23023e8a"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.language-switcher select:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.server-status {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-light.green {
    background-color: green;
}

.status-light.red {
    background-color: red;
}