/* =================== Allgemein =================== */
body {
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: white;
    overflow-x: hidden;
}

/* =================== Rauch Hintergrund =================== */
.smoke-bg {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: #2a002e;
    z-index: -1;
}

.smoke {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,0,170,0.3) 0%, transparent 70%);
    animation: smokeMove 25s linear infinite;
}

.smoke1 { top: 10%; left:10%; }
.smoke2 { top: 50%; left:60%; animation-duration:30s; }
.smoke3 { top: 70%; left:30%; animation-duration:35s; }

@keyframes smokeMove {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-200px) scale(1.2); }
    100% { transform: translateY(0) scale(1); }
}

/* =================== Banner =================== */
.banner {
    width: 90%;
    max-width: 1100px;
    margin-top: 20px;
    border-radius: 10px;
}

/* =================== Wrapper Buttons + Show =================== */
.buttons-show-wrapper {
    display: flex;
    flex-direction: column; /* Mobile default */
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

/* Buttons untereinander */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.main-button {
    padding: 20px 60px;
    font-size: 22px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    background: linear-gradient(45deg,#ff2bb3,#7a00ff);
    transition: 0.3s;
}

.button,
.super-button {
    padding: 16px 50px;
    font-size: 18px;
    border-radius: 40px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    background: linear-gradient(135deg,#ff69b4,#ff1493);
}

.super-button {
    background: linear-gradient(135deg,#ff2bb3,#ffd700);
}

.main-button:hover,
.button:hover,
.super-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255,0,170,0.6);
}

/* =================== Show Box =================== */
.show-box {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 25px;
    background: linear-gradient(45deg,#ff2bb3,#7a00ff);
    text-align: center;
    box-shadow: 0 5px 15px rgba(255,0,170,0.4);
    white-space: nowrap;
}

.show-box h2 {
    margin-bottom: 8px;
    font-size: 22px;
}

#countdown {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

#countdown.online {
    color: lime;
    text-shadow: 0 0 5px lime, 0 0 10px lime, 0 0 20px lime;
}

.show-description {
    font-size: 16px;
    margin-bottom: 10px;
}

.show-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 35px;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg,#ff2bb3,#ff69b4);
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.show-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255,0,170,0.6);
}

/* =================== Event Box =================== */
.special-events-box {
    margin-top: 30px;
    background: linear-gradient(135deg, #ff2bb3, #7a00ff);
    padding: 25px 30px;
    border-radius: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px rgba(255,0,170,0.4);
    color: white;
    font-size: 18px;
    line-height: 1.6;
}

.special-events-box > div {
    display: flex;
    justify-content: center; /* horizontal zentrieren */
    align-items: center;     /* vertikal zentrieren, falls Höhe vorhanden */
    flex-direction: column;  /* falls mehrere Kinder */
    text-align: center;
    margin: 5px 0;
}
/* H2 in der Event-Box zentrieren und hervorheben */
.special-events-box > div > h2 {
    text-align: center;
    margin: 15px 0;
    font-size: 24px;           /* etwas größer */
    font-weight: 700;          /* fetter */
    color: #ffd700;            /* goldgelb, passt zum Verlauf */
    text-shadow: 0 0 5px #ff69b4, 0 0 10px #ff2bb3; /* leichter Glow */
}
.event-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.event-item:last-child {
    border-bottom: none;
}

.event-icon {
    font-size: 24px;
    
}

.event-text {
    display: inline-block;
}

.event-text strong {
    display: block;
    margin-bottom: 4px;
}

/* =================== Social Buttons =================== */
.social-buttons {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-buttons a {
    font-size: 18px;
    color: white;
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-buttons a:hover {
    background: #ff2bb3;
    transform: scale(1.2);
}

/* =================== Footer =================== */
footer {
    margin-top: 40px;
    padding: 20px;
    font-size: 14px;
}

/* =================== Desktop =================== */
@media (min-width: 701px) {
    .buttons-show-wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
    }

    .button-container {
        align-items: flex-start;
        order: 0;
    }

    .show-box {
        order: 1;
        margin: 0;
    }
}

/* =================== Mobile =================== */
@media (max-width:700px){
    .buttons-show-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .show-box {
        order: 0; /* oben */
        margin: 20px auto;
        white-space: normal;
    }
    .button-container {
        order: 1; /* darunter */
    }
    .main-button {
        font-size: 20px;
        padding: 16px 50px;
    }
    .button,
    .super-button {
        font-size: 16px;
        padding: 14px 35px;
    }
    #countdown {
        font-size: 16px;
    }
    .special-events-box {
        font-size: 16px;
        padding: 20px 20px;
    }
    .event-icon {
        font-size: 20px;
    }
}