body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: white;
    position: relative;
    align-items: center;
    justify-content: center;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px) brightness(0.7);
    z-index: -1;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    box-sizing: border-box;
    flex: 1;
    justify-content: center;
}

.main-title {
    font-size: 4rem;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    margin: 0;
    letter-spacing: 2px;
    text-align: center;
    font-weight: 900;
    /* Gradient text effect similar to the example logo style */
    background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 0px rgba(0,0,0,0.5));
}

.links-section {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: transform 0.2s ease;
    text-align: center;
}

.link-item:hover {
    transform: translateY(-5px);
}

.icon-placeholder {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.discord-icon { background: #5865F2; border-color: #5865F2; }
.map-icon { background: #F1C40F; border-color: #F1C40F; }

.link-text span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.2rem;
}

.link-text strong {
    display: block;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.server-status-bar {
    background: #1abc9c; /* Teal color like the example */
    padding: 1rem 2rem;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: background 0.2s, transform 0.1s;
    min-width: 300px;
    text-align: center;
    position: relative;
    user-select: none;
}

.server-status-bar:hover {
    background: #16a085;
}

.server-status-bar:active {
    transform: scale(0.98);
}

.copy-feedback {
    position: fixed;
    bottom: 100px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.copy-feedback.show {
    opacity: 1;
}

.footer {
    width: 100%;
    background-color: transparent;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Map Page Styles */
body.map-page {
    display: block;
    overflow: hidden;
}

body.map-page::before {
    display: none; /* Hide the background image on map page */
}

.map-iframe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 0;
    background: #222; /* Loading background */
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.back-button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}