/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: radial-gradient(circle at top, #1b3b2a 0, #050807 55%, #020303 100%);
    color: #f5f5f5;
}

/* --- HEADER MIT LOGO + BUTTON UNTEN --- */

.top-header {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #0f2619, #163626);
    border-bottom: 2px solid #2f5b3c;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.server-logo {
    width: 230px;
    height: auto;
    filter: drop-shadow(0 0 14px rgba(0,0,0,0.7));
}

/* --- SCHÖNER PLAY BUTTON --- */

.round-copy-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: none;
    background: radial-gradient(circle at 30% 30%, #3fe06a, #1a3d2a);
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 
        0 0 25px rgba(63,224,106,0.6),
        inset 0 0 12px rgba(0,0,0,0.5);
    animation: pulse 2.4s infinite ease-in-out;
}

.round-copy-btn:hover {
    transform: scale(1.12);
    box-shadow: 
        0 0 35px rgba(63,224,106,0.9),
        inset 0 0 16px rgba(0,0,0,0.6);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* --- SERVER ONLINE TEXT --- */

.server-online {
    color: #3fe06a;
    font-weight: 700;
    font-size: 17px;
    text-shadow: 0 0 10px rgba(63,224,106,0.8);
    letter-spacing: 1px;
}

/* Navigation */

.main-nav {
    display: flex;
    gap: 20px;
    padding: 10px 8%;
    background: #0b1811;
    border-bottom: 1px solid #1f3a29;
    justify-content: center;
}

.main-nav a {
    color: #cfead8;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #9fe0b3;
    border-color: #3fae63;
}

/* Hero */

main {
    padding: 30px 8% 50px;
}

.hero {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.hero-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 15px;
    color: #d5f0df;
    line-height: 1.5;
}

.hero-placeholder {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    border: 2px dashed #3fae63;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9fe0b3;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: radial-gradient(circle at top, rgba(63, 174, 99, 0.15), transparent 60%);
}

/* Footer */

footer {
    text-align: center;
    padding: 15px 8% 25px;
    font-size: 12px;
    color: #9bb9a6;
    border-top: 1px solid #1f3a29;
    background: #050a07;
}
/* SOCIAL TAB */

#tiktok-latest img {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

#discord-invite {
    margin-top: 15px;
    display: inline-block;
}
