body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
}
.container {
    max-width: 1200px;
}
.section-title {
    color: #00bcd4;
    border-bottom: 2px solid #00bcd4;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}
.card {
    background-color: #2a2a4a;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}
.card:hover {
    transform: translateY(-5px);
}
.btn-primary {
    background-color: #00bcd4;
    color: #1a1a2e;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}
.btn-primary:hover {
    background-color: #0097a7;
}
input, textarea {
    background-color: #3a3a5a;
    border: 1px solid #5a5a7a;
    color: #e0e0e0;
    border-radius: 0.5rem;
    padding: 0.75rem;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.5);
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #2a2a4a;
    margin: auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 80%;
    max-width: 500px;
    text-align: center;
    position: relative;
}
.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #aaa;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}
.close-button:hover,
.close-button:focus {
    color: #e0e0e0;
    text-decoration: none;
    cursor: pointer;
}
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
}
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #00bcd4;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #2a2a4a;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0.5rem;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
}

.dropdown-menu a {
    color: #e0e0e0;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s;
    border-radius: 0.5rem;
}

.dropdown-menu a:hover {
    background-color: #00bcd4;
    color: #1a1a2e;
}

.dropdown-container {
    position: relative;
    display: inline-block;
}

.content-section {
    display: none;
}
#servers {
    display: block;
}