/* Grund-Reset */
* { box-sizing: border-box; }

body { 
    font-family: 'Segoe UI', Arial, sans-serif; 
    background: url('lukas-hintergrund.png') no-repeat center center fixed; 
    background-size: cover; 
    color: #ffffff; 
    margin: 0; 
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* Musik Player oben Mitte */
.music-controls {
    position: fixed;
    top: -120px; 
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid #ffcc00;
    border-radius: 0 0 15px 15px;
    padding: 10px 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.music-controls.active { top: 0; }
#track-name { font-size: 0.7rem; color: #ffcc00; text-transform: uppercase; letter-spacing: 1px; }
.player-btns { display: flex; gap: 20px; }
.player-btns button { background: none; border: none; color: white; cursor: pointer; font-size: 1.2rem; }
#volumeSlider { width: 100px; accent-color: #ffcc00; }

/* Haupt-Layout */
.main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    padding: 20px;
}

.container { 
    flex: 0 0 450px; 
    text-align: center;
    padding: 30px;
    background: rgba(17, 17, 17, 0.92); 
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    border: 1px solid #222;
}

/* Video & Header */
.profile-video { 
    width: 100%; max-width: 380px; height: auto; border-radius: 15px; 
    border: 4px solid #ffcc00; box-shadow: 0 0 30px rgba(255, 204, 0, 0.4);
    margin-bottom: 20px; background: #000;
}

h1 { font-size: 2.2em; margin: 0; color: #ffcc00; }
.motto { color: #ffcc00; font-size: 1.1em; margin-bottom: 25px; font-weight: bold; }

/* Partner-Banner */
.partner { flex: 0 0 320px; }
.partner img { width: 100%; border-radius: 15px; border: 1px solid #222; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.image-container { position: relative; width: 100%; }

.partner-right img { filter: grayscale(80%); opacity: 0.3; }

.coming-soon-overlay { 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); 
    color: #ffcc00; font-weight: 900; font-size: 1.6em; text-shadow: 2px 2px 10px #000; 
    pointer-events: none; 
    display: flex; gap: 8px; white-space: nowrap; 
}

/* Buttons */
.link-btn { 
    display: block; background-color: #1a1a1a; color: #fff; text-decoration: none; 
    padding: 16px; margin: 12px 0; border-radius: 15px; font-weight: bold;
    border: 1px solid #333; transition: 0.3s ease; text-align: center;
}
.link-btn:hover { transform: scale(1.03); background-color: #222; border-color: #ffcc00; }

.twitch-main { background: linear-gradient(45deg, #6441a5, #9146ff); border: none; }
.discord:hover { border-color: #5865F2; color: #5865F2; }
.wow:hover { border-color: #c41f3b; color: #c41f3b; }
.tiktok:hover { border-color: #00f2fe; color: #00f2fe; }
.insta:hover { border-color: #e1306c; color: #ff8aab; }
.youtube:hover { border-color: #ff0000; color: #ff0000; }

.divider { margin: 20px 0; font-size: 0.8em; color: #555; text-transform: uppercase; }

/* Footer */
.footer { margin-top: 30px; }
.footer a { color: #888; text-decoration: none; font-size: 0.9em; transition: 0.3s; }
.footer a:hover { color: #ffcc00; }

/* --- POP-UP (MODAL) DESIGN --- */
.modal {
    display: none; /* Startet versteckt */
    position: fixed; 
    z-index: 2000; 
    left: 0; top: 0; width: 100%; height: 100%; 
    background-color: rgba(0, 0, 0, 0.8); /* Dunkles Overlay */
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #111;
    padding: 30px;
    border: 1px solid #ffcc00;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
    position: relative;
    animation: popIn 0.3s ease-out;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-content h2 { color: #ffcc00; margin-top: 0; }
.impressum-text { color: #ccc; line-height: 1.6; font-size: 0.9em; }

.close-btn {
    color: #888;
    position: absolute;
    top: 10px; right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover { color: #ffcc00; }

/* Mobile */
@media (max-width: 1100px) {
    .main-wrapper { flex-direction: column; }
    .partner { width: 100%; max-width: 350px; margin: 10px auto; }
    .container { width: 100%; }
}