/* Live Banner Premium Look */

.live-banner-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2d3748 100%);
    color: #e4002b;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border-left: 6px solid var(--aloha-red);
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.live-banner-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 41, 59, 0.2);
    color: #000;
}

.live-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.live-indicator {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-dot-premium {
    height: 12px;
    width: 12px;
    background-color: var(--aloha-red);
    border-radius: 50%;
    display: inline-block;
}

.live-pulse {
    position: absolute;
    height: 24px;
    width: 24px;
    background-color: var(--aloha-red);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.5); opacity: 0.8; }
    70% { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(0.5); opacity: 0; }
}

.live-text strong {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 2px;
}

.live-text span {
    font-size: 0.9rem;
    color: var(--slate-400);
    font-weight: 500;
}

.live-icon-box {
    background: rgba(214, 54, 56, 0.15);
    color: var(--aloha-red);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: 0.3s;
}

.live-banner-premium:hover .live-icon-box {
    background: var(--aloha-red);
    color: #fff;
    transform: rotate(10deg);
}
/* Container: Schwarz mit rotem Akzent */
.aloha-gs-banner {
    background: linear-gradient(90deg, #1a1a1a 0%, #333333 100%);
    border-left: 5px solid #e30613; /* Ironman Rot */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Montserrat', 'Arial Black', sans-serif; /* Oder eure Event-Font */
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    margin: 20px 0;
    gap: 20px;
    flex-wrap: wrap;
}

/* Badge: Auffälliges Rot, kursiv */
.aloha-gs-badge {
    background-color: #e30613;
    color: #fff;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
}

/* Timer: Dezent in Grau/Weiß */
.aloha-gs-timer {
    font-size: 0.85rem;
    font-weight: 600;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 6px;
}

.aloha-gs-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

/* Titel: Groß, Fett, Weiß */
.aloha-gs-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #ffffff;
}

/* Button: Der "Finishline" Look */
.aloha-gs-btn {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 800;
    font-style: italic;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.aloha-gs-btn:hover {
    background-color: #ffffff;
    color: #e30613;
    transform: scale(1.05);
}

/* Mobile Optimierung */
@media (max-width: 640px) {
    .aloha-gs-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .aloha-gs-action {
        width: 100%;
    }
    .aloha-gs-btn {
        width: 100%;
        justify-content: center;
    }
}
