:root {
    --red: #ff0033;
    --dark: #0a0e14;
    --dark2: #121821;
    --text: #e8ebf0;
    --muted: #8a94a6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

/* HEADER */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 4rem;
    background: rgba(5,8,12,0.85);
    backdrop-filter: blur(10px);
    z-index: 100;
}
.logo {
    color: var(--red);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: italic;
}
nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}
nav a {
    font-size: 0.95rem;
    transition: color 0.2s;
}
nav a:hover { color: var(--red); }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background: linear-gradient(135deg, rgba(10,14,20,0.85), rgba(10,14,20,0.6)), url('/assets/img/hero-bg.jpg') center/cover no-repeat;
}

.hero-content {
    max-width: 700px;
    width: 100%;
    border-left: 5px solid var(--red);
    background: rgba(20,30,40,0.55);
    backdrop-filter: blur(4px);
    padding: 2.5rem 3rem;
    position: relative;
}
.hero-content::after {
    content: '';
    position: absolute;
    left: 0; bottom: -5px;
    width: 100%; height: 5px;
    background: var(--red);
}
.hero-sub {
    font-size: 1.4rem;
    color: #d4d9e2;
    margin-bottom: 0.5rem;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    text-shadow: 3px 3px 0 var(--red);
}

/* STATS */
.stats {
    padding: 5rem 4rem;
    background: var(--dark2);
    text-align: center;
}
.stats h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}
.stats h2 span { color: var(--red); }
.stats .updated {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 3rem;
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.stat-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 2rem 1rem;
    transition: transform 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--red);
    display: block;
}
.stat-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 0.4rem;
}
.stat-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }

footer {
    text-align: center;
    padding: 2rem;
    background: #05080c;
    color: var(--muted);
    font-size: 0.85rem;
}

/* INFO SECTION */
.info {
    padding: 5rem 2rem;
}

.info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.info-block h2 {
    margin-bottom: 1rem;
}

.btn-stream {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-stream:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1 / 1;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 6px;
    box-shadow: 0 0 40px rgba(220, 20, 60, 0.4);
    animation: lightboxFade 0.25s ease;
}

@keyframes lightboxFade {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.lightbox-close:hover { color: var(--red); }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 1rem;
    user-select: none;
    transition: color 0.2s;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover { color: var(--red); }

/* BROADCAST STATS - normale Container-Breite wie .info-container */
.broadcast-stats {
    padding: 4rem 2rem;
}

.broadcast-stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.broadcast-block h2 {
    margin-bottom: 1.5rem;
}

.stream-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* ABOUT SECTION */
.about {
    padding: 5rem 2rem;
    text-align: center;
}

.about h2 {
    margin-bottom: 3rem;
}

.about h2 span {
    color: var(--red);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
}

.about-block h3 {
    margin-bottom: 1.2rem;
    text-decoration: underline;
    text-decoration-color: var(--red);
}

.about-block p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.album-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.album-list li {
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

.about-highlight {
    font-style: italic;
    color: var(--red);
}

/* RELEASES SECTION */
.releases {
    padding: 5rem 2rem;
    text-align: center;
}

.releases h2 {
    margin-bottom: 3rem;
}

.releases h2 span {
    color: var(--red);
}

.releases-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.release-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.release-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
}

.release-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.release-card h4 {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.release-card h3 {
    font-size: 1.1rem;
}

.release-card h3 a {
    color: var(--white, #fff);
    text-decoration: none;
}

.release-card h3 a:hover {
    color: var(--red);
}

/* PARTNERS SECTION */
.partners {
    padding: 5rem 2rem;
    text-align: center;
}

.partners h2 {
    margin-bottom: 3rem;
}

.partners h2 span {
    color: var(--red);
}

.partners-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    /* Falls die Original-Logos schwarz sind (wie Calygram), auf hellem BG unsichtbar → ggf. invertieren */
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.partner-logo img:hover {
    opacity: 1;
}

/* VISION SECTION */
.vision {
    padding: 5rem 2rem;
    text-align: center;
}

.vision h2 {
    margin-bottom: 3rem;
}

.vision h2 span {
    color: var(--red);
}

.vision-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
}

.vision-block h3 {
    margin-bottom: 1.2rem;
    font-style: italic;
    color: var(--red);
}

.vision-block p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.vision-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.vision-links a {
    color: var(--white, #fff);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.vision-links a:hover {
    color: var(--red);
}

.vision-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-question {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--red);
    margin-top: 1rem;
}

/* TOP REMIX SECTION */
.top-remix {
    padding: 5rem 2rem;
    text-align: center;
}

.top-remix h2 {
    margin-bottom: 3rem;
}

.top-remix h2 span {
    color: var(--red);
}

.top-remix-content {
    max-width: 800px;
    margin: 0 auto;
}

.top-remix-content a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.top-remix-content a:hover {
    transform: translateY(-5px);
    border-color: var(--red);
}

.top-remix-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* FOOTER CONTACT SECTION */
.footer-contact {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.footer-contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-col p {
    line-height: 1.7;
}

.footer-col a {
    color: var(--white, #fff);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--red);
}

/* Player Column */
.footer-player iframe {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.footer-button {
    display: inline-block;
    padding: 0.7rem 2rem;
    border: 2px solid var(--red);
    color: var(--red) !important;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer-button:hover {
    background: var(--red);
    color: var(--white, #fff) !important;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--red);
    background: rgba(255, 0, 0, 0.1);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white, #fff);
}

@media (max-width: 768px) {
    header { padding: 1rem 1.5rem; flex-direction: column; gap: 1rem; }
    nav ul { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .hero-content { margin: 0 1rem; padding: 2rem 1.5rem; }
    .hero-title { font-size: 2.8rem; }
    .stats { padding: 3rem 1.5rem; }
    .info-container {
        grid-template-columns: 1fr;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .info {
        padding: 3rem 1.5rem;
    }
    .lightbox-content {
        max-width: 95%;
    }
    .lightbox-prev, .lightbox-next {
        font-size: 1.8rem;
        padding: 0.5rem;
    }
    .broadcast-stats {
        padding: 3rem 1.5rem;
    }
    .stream-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .btn-stream {
        padding: 10px 20px;
        font-size: 14px;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about {
        padding: 3rem 1.5rem;
    }
    .releases-grid {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .partners {
        padding: 3rem 1.5rem;
    }
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .vision {
        padding: 3rem 1.5rem;
    }
    .top-remix {
        padding: 3rem 1.5rem;
    }
    .footer-contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}