/*
 * SongDrop Landing Page v1
 * Nur für index.php – lädt nach style.css und überschreibt bewusst nur Landing-Elemente.
 */

.songdrop-landing {
    display: grid;
    gap: clamp(22px, 3vw, 42px);
    padding-bottom: clamp(36px, 6vw, 82px);
}

.songdrop-landing,
.songdrop-landing * {
    box-sizing: border-box;
}

.songdrop-landing button,
.songdrop-landing input,
.songdrop-landing textarea,
.songdrop-landing select {
    font: inherit;
}

.songdrop-landing .eyebrow {
    margin: 0 0 10px;
}

.sd-home-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    min-height: min(700px, 74vh);
    padding: clamp(34px, 6vw, 82px);
    overflow: hidden;
    border: 1px solid rgba(117, 224, 255, .16);
    border-radius: 38px;
    background:
        radial-gradient(circle at 86% 34%, rgba(34, 255, 154, .12), transparent 24%),
        radial-gradient(circle at 66% 78%, rgba(0, 217, 255, .16), transparent 32%),
        linear-gradient(128deg, rgba(3, 13, 25, .96), rgba(4, 18, 34, .78) 54%, rgba(2, 10, 17, .86));
    box-shadow:
        0 40px 100px rgba(0, 0, 0, .36),
        inset 0 1px 0 rgba(255, 255, 255, .035);
}

.sd-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 217, 255, .06) 1px, transparent 1px),
        linear-gradient(rgba(0, 217, 255, .045) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, .86), transparent 78%);
    opacity: .65;
}

.sd-home-hero::after {
    content: "";
    position: absolute;
    inset: auto -12% -55% 40%;
    z-index: -1;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(34, 255, 154, .13), transparent 65%);
    filter: blur(20px);
}

.sd-home-hero__grid,
.sd-home-hero__beam {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.sd-home-hero__grid {
    right: -18%;
    bottom: -42%;
    width: 74%;
    height: 72%;
    opacity: .5;
    transform: rotateX(62deg) rotateZ(-22deg);
    transform-origin: bottom right;
    background:
        linear-gradient(rgba(0, 217, 255, .16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, .16) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .95));
}

.sd-home-hero__beam {
    top: -44%;
    width: 28%;
    height: 150%;
    filter: blur(12px);
    opacity: .38;
    transform: rotate(20deg);
}

.sd-home-hero__beam--cyan {
    right: 21%;
    background: linear-gradient(180deg, transparent, rgba(0, 217, 255, .6), transparent);
}

.sd-home-hero__beam--green {
    right: 4%;
    background: linear-gradient(180deg, transparent, rgba(34, 255, 154, .46), transparent);
}

.sd-home-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.sd-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.sd-live-dot {
    width: 9px;
    height: 9px;
    border: 1px solid rgba(141, 166, 184, .7);
    border-radius: 50%;
    background: rgba(141, 166, 184, .25);
}

.sd-live-dot.is-live {
    border-color: rgba(34, 255, 154, .95);
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(34, 255, 154, .62);
    animation: sd-live-pulse 1.8s infinite;
}

.sd-home-hero h1 {
    max-width: 720px;
    margin: 0;
    color: #f3fbff;
    font-size: clamp(48px, 7.1vw, 100px);
    font-weight: 950;
    line-height: .88;
    letter-spacing: -.07em;
    text-wrap: balance;
}

.sd-home-hero h1 span {
    display: inline-block;
    background: linear-gradient(92deg, var(--cyan), #57eaff 35%, var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 10px 26px rgba(0, 217, 255, .15));
}

.sd-home-hero__lead {
    max-width: 560px;
    margin: 28px 0 0;
    color: #bdd2df;
    font-size: clamp(16px, 1.65vw, 20px);
    line-height: 1.72;
}

.sd-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.sd-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.sd-btn:hover {
    transform: translateY(-2px);
}

.sd-btn b {
    font-size: 18px;
    line-height: 1;
}

.sd-btn--primary {
    color: #001318;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 18px 36px rgba(0, 217, 255, .16);
}

.sd-btn--primary:hover {
    box-shadow: 0 18px 46px rgba(34, 255, 154, .27);
}

.sd-btn--ghost {
    color: #d9f8ff;
    border-color: rgba(117, 224, 255, .22);
    background: rgba(2, 14, 26, .42);
}

.sd-btn--ghost:hover {
    border-color: rgba(34, 255, 154, .42);
    background: rgba(34, 255, 154, .08);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .24);
}

.sd-btn--small {
    min-height: 44px;
    padding: 0 16px;
    font-size: 10px;
}

.sd-btn--full {
    width: 100%;
}

.sd-discord-inline {
    width: min(100%, 480px);
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding: 11px 13px;
    color: #dffaff;
    text-decoration: none;
    border: 1px solid rgba(88, 109, 255, .23);
    border-radius: 17px;
    background: linear-gradient(90deg, rgba(88, 101, 242, .11), rgba(0, 217, 255, .035));
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.sd-discord-inline:hover {
    transform: translateX(4px);
    border-color: rgba(112, 130, 255, .58);
    background: linear-gradient(90deg, rgba(88, 101, 242, .2), rgba(0, 217, 255, .08));
}

.sd-discord-inline__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, #5865f2, #8591ff);
    box-shadow: 0 8px 20px rgba(88, 101, 242, .25);
}

.sd-discord-inline strong,
.sd-discord-inline small {
    display: block;
}

.sd-discord-inline strong {
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.sd-discord-inline small {
    margin-top: 3px;
    color: #9db5c5;
    font-size: 11px;
}

.sd-discord-inline > b {
    color: #9fdff2;
    font-size: 18px;
}

.sd-home-hero__visual {
    position: relative;
    z-index: 1;
    min-height: 470px;
    display: grid;
    place-items: center;
}

.sd-shiva-stage {
    position: relative;
    width: min(88%, 430px);
    aspect-ratio: 1 / 1.08;
    display: grid;
    place-items: end center;
    isolation: isolate;
}

.sd-shiva-stage::before {
    content: "";
    position: absolute;
    inset: 12% 0 5%;
    z-index: -2;
    border: 1px solid rgba(117, 224, 255, .21);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 40%, rgba(0, 217, 255, .18), transparent 46%),
        radial-gradient(circle at 50% 78%, rgba(34, 255, 154, .19), transparent 58%);
    box-shadow:
        0 0 62px rgba(0, 217, 255, .12),
        inset 0 0 45px rgba(34, 255, 154, .08);
}

.sd-shiva-stage::after {
    content: "";
    position: absolute;
    inset: auto 13% 2%;
    z-index: -1;
    height: 16%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 217, 255, .28), transparent 66%);
    filter: blur(14px);
}

.sd-shiva-stage__glow {
    position: absolute;
    inset: 20% 7% 7%;
    z-index: -1;
    border-radius: 44%;
    background: linear-gradient(135deg, rgba(0, 217, 255, .24), rgba(34, 255, 154, .22));
    filter: blur(34px);
}

.sd-shiva-stage img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 30px 36px rgba(0, 0, 0, .46));
    animation: sd-shiva-float 5.8s ease-in-out infinite;
}

.sd-orbit {
    position: absolute;
    border: 1px solid rgba(117, 224, 255, .2);
    border-radius: 50%;
    pointer-events: none;
}

.sd-orbit--one {
    width: 78%;
    height: 35%;
    top: 21%;
    left: 11%;
    transform: rotate(-18deg);
}

.sd-orbit--two {
    width: 66%;
    height: 28%;
    right: 0;
    bottom: 20%;
    border-color: rgba(34, 255, 154, .18);
    transform: rotate(35deg);
}

.sd-hero-equalizer {
    position: absolute;
    right: 2%;
    bottom: 10%;
    display: flex;
    align-items: end;
    gap: 5px;
    height: 82px;
    opacity: .72;
}

.sd-hero-equalizer i {
    width: 5px;
    min-height: 14px;
    border-radius: 99px;
    background: linear-gradient(to top, var(--cyan), var(--green));
    box-shadow: 0 0 10px rgba(0, 217, 255, .42);
    animation: sd-eq 1.2s ease-in-out infinite alternate;
}

.sd-hero-equalizer i:nth-child(2n) { animation-delay: -.6s; }
.sd-hero-equalizer i:nth-child(3n) { animation-delay: -.3s; }
.sd-hero-equalizer i:nth-child(4n) { animation-delay: -.9s; }

.sd-mini-stat {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 3px;
    padding: 12px 14px;
    border: 1px solid rgba(117, 224, 255, .18);
    border-radius: 15px;
    background: rgba(3, 14, 27, .72);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
}

.sd-mini-stat span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.sd-mini-stat strong {
    color: #ecfbff;
    font-size: 13px;
}

.sd-mini-stat--top {
    top: 14%;
    right: 2%;
}

.sd-mini-stat--bottom {
    left: 1%;
    bottom: 18%;
    border-color: rgba(34, 255, 154, .2);
}

.sd-home-hero__footer {
    position: absolute;
    right: clamp(24px, 5vw, 76px);
    bottom: 26px;
    left: clamp(24px, 5vw, 76px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
    color: rgba(157, 181, 197, .7);
    border-top: 1px solid rgba(117, 224, 255, .13);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sd-home-hero__footer i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
}

.sd-session-status {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 19px;
    min-height: 118px;
    padding: 22px 26px;
    overflow: hidden;
    border: 1px solid rgba(117, 224, 255, .18);
    border-radius: 26px;
    background: linear-gradient(110deg, rgba(4, 19, 33, .92), rgba(8, 24, 42, .68));
    box-shadow: 0 22px 56px rgba(0, 0, 0, .24);
}

.sd-session-status::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: #768b98;
}

.sd-session-status.is-open::after {
    background: linear-gradient(to bottom, var(--cyan), var(--green));
    box-shadow: 0 0 22px rgba(34, 255, 154, .5);
}

.sd-session-status__signal {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(117, 224, 255, .16);
    border-radius: 16px;
    background: rgba(0, 217, 255, .07);
}

.sd-session-status__signal span {
    width: 4px;
    border-radius: 99px;
    background: #8199a8;
}

.sd-session-status__signal span:nth-child(1) { height: 12px; }
.sd-session-status__signal span:nth-child(2) { height: 22px; }
.sd-session-status__signal span:nth-child(3) { height: 16px; }

.sd-session-status.is-open .sd-session-status__signal {
    background: rgba(34, 255, 154, .08);
    border-color: rgba(34, 255, 154, .24);
}

.sd-session-status.is-open .sd-session-status__signal span {
    background: linear-gradient(to top, var(--cyan), var(--green));
    animation: sd-eq .95s ease-in-out infinite alternate;
}

.sd-session-status.is-open .sd-session-status__signal span:nth-child(2) { animation-delay: -.35s; }
.sd-session-status.is-open .sd-session-status__signal span:nth-child(3) { animation-delay: -.7s; }

.sd-session-status__copy {
    min-width: 0;
}

.sd-session-status__copy .eyebrow {
    margin-bottom: 6px;
}

.sd-session-status__copy h2 {
    margin: 0;
    color: #effbff;
    font-size: clamp(19px, 2.2vw, 28px);
    line-height: 1.1;
}

.sd-session-status__copy p:not(.eyebrow) {
    max-width: 720px;
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.sd-session-status__meta {
    min-width: 134px;
    display: grid;
    justify-items: end;
    gap: 4px;
}

.sd-session-status__timer-label {
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sd-session-status__meta strong {
    color: var(--green);
    font-size: 20px;
    letter-spacing: .07em;
}

.sd-session-status__meta a {
    color: #c3f8ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
}

.sd-session-status__meta a b {
    color: var(--green);
    font-size: 15px;
}

.sd-session-status__cta {
    min-height: 44px;
    padding: 0 16px;
    color: #001318;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

.sd-session-status__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(34, 255, 154, .22);
}

.sd-session-status__cta b {
    margin-left: 7px;
    font-size: 16px;
}

.sd-community-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(117, 224, 255, .16);
    border-radius: 22px;
    background: rgba(117, 224, 255, .14);
}

.sd-community-strip article {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 100px;
    padding: 18px 22px;
    background: rgba(4, 15, 27, .74);
}

.sd-community-strip__number {
    color: rgba(0, 217, 255, .72);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
}

.sd-community-strip strong,
.sd-community-strip small {
    display: block;
}

.sd-community-strip strong {
    color: #eafaff;
    font-size: 13px;
}

.sd-community-strip small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.sd-live-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(290px, .67fr);
    gap: clamp(18px, 2.5vw, 30px);
    align-items: start;
    scroll-margin-top: 110px;
}

.sd-live-ranking {
    min-width: 0;
    padding: clamp(22px, 3.2vw, 38px);
    border: 1px solid rgba(117, 224, 255, .18);
    border-radius: 32px;
    background:
        radial-gradient(circle at 98% 0%, rgba(0, 217, 255, .09), transparent 28%),
        linear-gradient(145deg, rgba(5, 20, 35, .92), rgba(3, 11, 21, .86));
    box-shadow: 0 28px 70px rgba(0, 0, 0, .26);
}

.sd-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.sd-section-heading h2 {
    margin: 0;
    color: #effbff;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 950;
    letter-spacing: -.055em;
    line-height: .96;
}

.sd-section-heading h2 span {
    color: var(--cyan);
}

.sd-section-heading p:not(.eyebrow) {
    max-width: 600px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.sd-ranking-head-actions {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 14px;
    flex-wrap: wrap;
}

.sd-live-count {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    padding: 8px 10px;
    border: 1px solid rgba(34, 255, 154, .16);
    border-radius: 13px;
    background: rgba(34, 255, 154, .05);
}

.sd-live-count i {
    width: 7px;
    height: 7px;
    margin-right: 3px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(34, 255, 154, .8);
}

.sd-live-count b {
    color: #eafff6;
    font-size: 18px;
}

.sd-live-count small {
    color: #91c8b2;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.sd-text-link {
    color: #b9eefa;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
}

.sd-text-link b {
    color: var(--green);
    font-size: 16px;
}

.sd-live-ranking__panel {
    overflow: hidden;
    border: 1px solid rgba(117, 224, 255, .13);
    border-radius: 22px;
    background: rgba(0, 6, 14, .38);
}

.sd-ranking-panel__topline {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) 92px;
    gap: 14px;
    padding: 13px 18px;
    color: #6f93a7;
    border-bottom: 1px solid rgba(117, 224, 255, .12);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.sd-ranking-panel__topline span:last-child {
    text-align: right;
}

.sd-playlist-wrap {
    position: relative;
    min-height: 198px;
}

.sd-live-playlist {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sd-live-playlist > li {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto auto auto auto;
    align-items: center;
    gap: 12px;
    min-height: 84px;
    padding: 13px 16px;
    overflow: hidden;
    border-bottom: 1px solid rgba(117, 224, 255, .1);
    background: rgba(7, 20, 35, .31);
    transition: background .2s ease, transform .2s ease;
}

.sd-live-playlist > li:last-child {
    border-bottom: 0;
}

.sd-live-playlist > li::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: transparent;
    transition: background .2s ease, box-shadow .2s ease;
}

.sd-live-playlist > li:hover {
    z-index: 1;
    background: rgba(0, 217, 255, .065);
}

.sd-live-playlist > li:hover::before {
    background: var(--cyan);
    box-shadow: 0 0 15px var(--cyan);
}

.sd-live-playlist > li:nth-child(1) {
    background:
        linear-gradient(90deg, rgba(255, 211, 106, .10), transparent 72%),
        rgba(7, 20, 35, .48);
}

.sd-live-playlist > li:nth-child(2) {
    background:
        linear-gradient(90deg, rgba(186, 224, 255, .08), transparent 72%),
        rgba(7, 20, 35, .42);
}

.sd-live-playlist > li:nth-child(3) {
    background:
        linear-gradient(90deg, rgba(255, 153, 109, .075), transparent 72%),
        rgba(7, 20, 35, .4);
}

.sd-live-playlist .rank {
    width: 44px;
    min-height: 44px;
    display: grid;
    place-items: center;
    color: #8eafbe;
    border: 1px solid rgba(117, 224, 255, .12);
    border-radius: 13px;
    background: rgba(1, 9, 18, .44);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .02em;
}

.sd-live-playlist > li:nth-child(1) .rank {
    color: #2a1b00;
    border-color: rgba(255, 211, 106, .44);
    background: linear-gradient(135deg, #ffd36a, #ffaf35);
    box-shadow: 0 0 18px rgba(255, 183, 56, .18);
}

.sd-live-playlist > li:nth-child(2) .rank {
    color: #10222d;
    border-color: rgba(196, 237, 255, .38);
    background: linear-gradient(135deg, #d2f2ff, #8fc7df);
}

.sd-live-playlist > li:nth-child(3) .rank {
    color: #2b1208;
    border-color: rgba(255, 170, 117, .38);
    background: linear-gradient(135deg, #ffca9b, #d77b4f);
}

.sd-live-playlist .song-main {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.sd-live-playlist .song-title {
    overflow: hidden;
    color: #effbff;
    font-size: 14px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sd-live-playlist .song-artist {
    overflow: hidden;
    color: #92afbd;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sd-live-playlist .song-artist small {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    padding: 3px 6px;
    color: #83c7d8;
    border: 1px solid rgba(0, 217, 255, .13);
    border-radius: 99px;
    background: rgba(0, 217, 255, .05);
    font-size: 9px;
    font-weight: 900;
}

.sd-live-playlist .platform {
    max-width: 92px;
    overflow: hidden;
    padding: 5px 7px;
    color: #b6d0dc;
    border: 1px solid rgba(117, 224, 255, .12);
    border-radius: 8px;
    background: rgba(1, 10, 19, .42);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .05em;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.sd-live-playlist .vote-btn {
    min-width: 61px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #d9fff1;
    border: 1px solid rgba(34, 255, 154, .2);
    border-radius: 12px;
    background: rgba(34, 255, 154, .06);
    font-size: 12px;
    font-weight: 950;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.sd-live-playlist .vote-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: rgba(34, 255, 154, .6);
    background: rgba(34, 255, 154, .14);
}

.sd-live-playlist .vote-btn.is-voted,
.sd-live-playlist .vote-btn:disabled {
    color: #7b9caa;
    border-color: rgba(117, 224, 255, .1);
    background: rgba(117, 224, 255, .04);
    cursor: not-allowed;
}

.sd-live-playlist .vote-icon {
    color: var(--green);
    font-size: 11px;
}

.sd-live-playlist .share-btn {
    min-width: 0;
    min-height: 0;
    padding: 7px 0;
    color: #8aa4b0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: .55;
    transition: color .18s ease, opacity .18s ease;
}

.sd-live-playlist > li:hover .share-btn {
    opacity: 1;
}

.sd-live-playlist .share-btn:hover,
.sd-live-playlist .share-btn:focus-visible {
    color: #ffd86a;
    background: transparent;
    box-shadow: none;
    filter: none;
    outline: none;
    transform: none;
}

.sd-live-playlist .report-btn {
    padding: 7px 0;
    color: #768f9b;
    border: 0;
    background: transparent;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: .45;
    transition: color .18s ease, opacity .18s ease;
}

.sd-live-playlist > li:hover .report-btn {
    opacity: 1;
}

.sd-live-playlist .report-btn:hover {
    color: #ff7da0;
}

.sd-empty-state {
    min-height: 300px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 9px;
    padding: 34px;
    text-align: center;
}

.sd-empty-state .empty-orb {
    width: 58px;
    height: 58px;
    margin-bottom: 5px;
    border: 1px solid rgba(0, 217, 255, .28);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(0, 217, 255, .32), transparent 48%),
        rgba(0, 217, 255, .04);
    box-shadow: 0 0 46px rgba(0, 217, 255, .15);
}

.sd-empty-state h3 {
    margin: 0;
    color: #effbff;
    font-size: 20px;
}

.sd-empty-state p {
    max-width: 460px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.sd-sidebar-stack {
    display: grid;
    gap: 16px;
}

.sd-side-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(117, 224, 255, .17);
    border-radius: 24px;
    background: rgba(5, 17, 30, .8);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .2);
}

.sd-side-card h3 {
    margin: 8px 0 0;
    color: #f0fbff;
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.sd-side-card h3 span {
    color: var(--green);
}

.sd-side-card p:not(.eyebrow) {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.sd-side-card--submit {
    background:
        radial-gradient(circle at 105% 0%, rgba(34, 255, 154, .16), transparent 40%),
        linear-gradient(145deg, rgba(8, 33, 43, .92), rgba(3, 15, 27, .85));
}

.sd-side-card--submit::after {
    content: "";
    position: absolute;
    right: -38px;
    bottom: -48px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(34, 255, 154, .15);
    border-radius: 50%;
    box-shadow: inset 0 0 22px rgba(34, 255, 154, .05);
}

.sd-side-card__topline {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--green);
}

.sd-side-card__topline span {
    font-size: 14px;
}

.sd-side-card__topline small {
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.sd-side-card .sd-btn {
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.sd-user-status {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 9px 10px;
    color: #b9d8e4;
    border: 1px solid rgba(117, 224, 255, .12);
    border-radius: 14px;
    background: rgba(0, 0, 0, .18);
    font-size: 11px;
}

.sd-user-status img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.sd-user-status strong {
    color: var(--green);
}

.sd-side-card--discord {
    padding-left: 78px;
    background:
        radial-gradient(circle at 8% 25%, rgba(88, 101, 242, .2), transparent 42%),
        rgba(5, 17, 30, .86);
}

.sd-discord-orb {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 12px;
    background: linear-gradient(135deg, #5865f2, #8792ff);
    box-shadow: 0 12px 24px rgba(88, 101, 242, .28);
}

.sd-side-card--discord h3 {
    font-size: 22px;
}

.sd-side-card--discord h3 span {
    color: #8792ff;
}

.sd-side-card--discord a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 15px;
    color: #c4caff;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .09em;
    text-decoration: none;
    text-transform: uppercase;
}

.sd-side-card--discord a b {
    color: #8792ff;
    font-size: 15px;
}

.sd-side-card--help {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.sd-side-card--help img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.sd-side-card--help strong,
.sd-side-card--help span,
.sd-side-card--help a {
    display: block;
}

.sd-side-card--help strong {
    color: #edfbff;
    font-size: 13px;
}

.sd-side-card--help span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.sd-side-card--help a {
    margin-top: 8px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.sd-side-card--help a b {
    color: var(--green);
}

/* Einreichungs-Modal */

body.sd-modal-open {
    overflow: hidden;
}

.sd-submit-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: grid;
    place-items: center;
    padding: clamp(12px, 3vw, 34px);
}

.sd-submit-modal[hidden] {
    display: none !important;
}

.sd-submit-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 4, 9, .78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: sd-modal-fade .2s ease both;
}

.sd-submit-modal__card {
    position: relative;
    z-index: 1;
    width: min(100%, 1040px);
    max-height: min(90vh, 920px);
    display: grid;
    grid-template-columns: minmax(210px, .43fr) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(117, 224, 255, .23);
    border-radius: 30px;
    background: #06111f;
    box-shadow: 0 38px 110px rgba(0, 0, 0, .62);
    animation: sd-modal-enter .25s ease both;
}

.sd-submit-modal__visual {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 19%, rgba(0, 217, 255, .28), transparent 25%),
        radial-gradient(circle at 72% 72%, rgba(34, 255, 154, .22), transparent 40%),
        linear-gradient(150deg, #0a263c, #07121f 55%, #06251d);
}

.sd-submit-modal__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 217, 255, .11) 1px, transparent 1px),
        linear-gradient(rgba(0, 217, 255, .09) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 90%);
}

.sd-submit-modal__visual::after {
    content: "";
    position: absolute;
    right: -42%;
    bottom: 5%;
    width: 160%;
    height: 42%;
    border: 1px solid rgba(34, 255, 154, .18);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.sd-submit-modal__visual span {
    position: absolute;
    top: 32px;
    left: 30px;
    color: #eafaff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.sd-submit-modal__visual img {
    position: absolute;
    right: -6%;
    bottom: 3%;
    width: 112%;
    max-height: 84%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 26px 26px rgba(0, 0, 0, .4));
}

.sd-submit-modal__body {
    position: relative;
    min-width: 0;
    overflow-y: auto;
    padding: clamp(28px, 4vw, 48px);
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 217, 255, .08), transparent 26%),
        #06111f;
    scrollbar-color: rgba(0, 217, 255, .46) rgba(0, 0, 0, .18);
}

.sd-submit-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #b8d5df;
    border: 1px solid rgba(117, 224, 255, .17);
    border-radius: 12px;
    background: rgba(0, 0, 0, .18);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s ease, color .18s ease, border-color .18s ease;
}

.sd-submit-modal__close:hover {
    transform: rotate(90deg);
    color: #fff;
    border-color: rgba(34, 255, 154, .5);
}

.sd-submit-modal__body h2 {
    max-width: 500px;
    margin: 0;
    color: #f0fbff;
    font-size: clamp(31px, 4vw, 50px);
    font-weight: 950;
    letter-spacing: -.06em;
    line-height: .95;
}

.sd-submit-modal__body h2 span {
    color: var(--green);
}

.sd-submit-modal__lead {
    max-width: 520px;
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.62;
}

.sd-modal-bonus {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 19px 0;
    padding: 11px 13px;
    color: #afd6c2;
    border: 1px solid rgba(34, 255, 154, .16);
    border-radius: 14px;
    background: rgba(34, 255, 154, .06);
    font-size: 12px;
    line-height: 1.5;
}

.sd-modal-bonus b {
    min-width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    color: #00170d;
    border-radius: 10px;
    background: var(--green);
    font-size: 11px;
}

.sd-modal-bonus strong,
.sd-modal-bonus a {
    color: var(--green);
}

.sd-modal-bonus a {
    font-weight: 900;
}

.sd-modal-song-form {
    display: grid;
    gap: 15px;
}

.sd-modal-song-form label {
    display: grid;
    gap: 7px;
}

.sd-modal-song-form label > span {
    color: #bdd8e2;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sd-modal-song-form label > span em {
    color: var(--green);
    font-style: normal;
}

.sd-modal-song-form label > span small {
    color: #678897;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
}

.sd-modal-song-form input,
.sd-modal-song-form select,
.sd-modal-song-form textarea {
    width: 100%;
    color: #e8faff;
    border: 1px solid rgba(117, 224, 255, .16);
    border-radius: 13px;
    outline: none;
    background: rgba(0, 8, 16, .48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .02);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.sd-modal-song-form input,
.sd-modal-song-form select {
    min-height: 49px;
    padding: 0 13px;
}

.sd-modal-song-form textarea {
    min-height: 98px;
    padding: 12px 13px;
    resize: vertical;
}

.sd-modal-song-form input::placeholder,
.sd-modal-song-form textarea::placeholder {
    color: #5b7887;
}

.sd-modal-song-form input:focus,
.sd-modal-song-form select:focus,
.sd-modal-song-form textarea:focus {
    border-color: rgba(0, 217, 255, .65);
    background: rgba(0, 217, 255, .035);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, .09);
}

.sd-modal-song-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.sd-modal-song-form .consent-boxes {
    display: grid;
    gap: 9px;
}

.sd-modal-song-form .consent-check {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 9px;
    padding: 11px;
    color: #a9c1cd;
    border: 1px solid rgba(117, 224, 255, .11);
    border-radius: 13px;
    background: rgba(0, 0, 0, .16);
    font-size: 11px;
    line-height: 1.53;
}

.sd-modal-song-form .consent-check input {
    width: 16px;
    min-height: 16px;
    margin: 1px 0 0;
    accent-color: var(--green);
}

.sd-modal-song-form .inline-info-btn {
    display: inline;
    margin: 0 0 0 4px;
    padding: 0;
    color: var(--cyan);
    border: 0;
    background: transparent;
    font-size: inherit;
    font-weight: 900;
    text-decoration: underline;
    cursor: pointer;
}

.sd-modal-submit {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #001318;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(0, 217, 255, .14);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.sd-modal-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(34, 255, 154, .22);
}

.sd-modal-submit:disabled {
    cursor: not-allowed;
    filter: grayscale(.65);
    opacity: .42;
}

.sd-modal-submit b {
    font-size: 19px;
    line-height: 1;
}

.sd-modal-song-form .form-hint {
    margin: -4px 0 0;
    color: #708b99;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

@keyframes sd-live-pulse {
    70% { box-shadow: 0 0 0 8px rgba(34, 255, 154, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 255, 154, 0); }
}

@keyframes sd-shiva-float {
    50% { transform: translateY(-11px) rotate(1deg); }
}

@keyframes sd-eq {
    from { transform: scaleY(.44); opacity: .4; }
    to { transform: scaleY(1.12); opacity: 1; }
}

@keyframes sd-modal-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes sd-modal-enter {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
    .sd-home-hero {
        grid-template-columns: minmax(0, 1fr) minmax(270px, .75fr);
        padding: 44px 34px 86px;
    }

    .sd-home-hero__visual {
        min-height: 400px;
    }

    .sd-live-layout {
        grid-template-columns: 1fr;
    }

    .sd-sidebar-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sd-side-card--help {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .songdrop-landing {
        gap: 20px;
    }

    .sd-home-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 38px 24px 76px;
        border-radius: 26px;
    }

    .sd-home-hero__visual {
        min-height: 320px;
        margin-top: 4px;
    }

    .sd-shiva-stage {
        width: min(72%, 340px);
    }

    .sd-mini-stat--top {
        right: 8%;
    }

    .sd-mini-stat--bottom {
        left: 7%;
    }

    .sd-home-hero__footer {
        gap: 7px;
        justify-content: center;
        font-size: 8px;
        letter-spacing: .075em;
    }

    .sd-session-status {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 14px;
        padding: 20px;
    }

    .sd-session-status__meta,
    .sd-session-status__cta {
        grid-column: 2;
        justify-self: start;
    }

    .sd-session-status__meta {
        justify-items: start;
    }

    .sd-community-strip {
        grid-template-columns: 1fr;
    }

    .sd-community-strip article {
        min-height: 76px;
        padding: 15px 18px;
    }

    .sd-section-heading {
        align-items: start;
        flex-direction: column;
    }

    .sd-ranking-head-actions {
        justify-content: start;
    }

    .sd-sidebar-stack {
        grid-template-columns: 1fr;
    }

    .sd-side-card--help {
        grid-column: auto;
    }

    .sd-submit-modal {
        padding: 0;
    }

    .sd-submit-modal__card {
        width: 100%;
        max-height: 100dvh;
        grid-template-columns: 1fr;
        border-width: 1px 0 0;
        border-radius: 24px 24px 0 0;
        align-self: end;
    }

    .sd-submit-modal__visual {
        min-height: 160px;
    }

    .sd-submit-modal__visual img {
        right: 0;
        bottom: -28%;
        width: 56%;
        max-height: 170%;
    }

    .sd-submit-modal__visual span {
        top: 25px;
        left: 24px;
    }

    .sd-submit-modal__body {
        max-height: calc(100dvh - 160px);
        padding: 27px 21px 30px;
    }
}

@media (max-width: 590px) {
    .sd-home-hero h1 {
        font-size: clamp(46px, 14vw, 68px);
    }

    .sd-home-hero__lead {
        margin-top: 22px;
        font-size: 15px;
    }

    .sd-home-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sd-btn {
        width: 100%;
    }

    .sd-home-hero__visual {
        min-height: 290px;
    }

    .sd-hero-equalizer {
        right: 0;
        transform: scale(.8);
        transform-origin: bottom right;
    }

    .sd-home-hero__footer {
        flex-wrap: wrap;
        line-height: 1.5;
    }

    .sd-home-hero__footer span:last-child {
        width: 100%;
        text-align: center;
    }

    .sd-live-ranking {
        padding: 20px 12px 12px;
        border-radius: 24px;
    }

    .sd-section-heading {
        padding: 0 8px;
    }

    .sd-section-heading h2 {
        font-size: 35px;
    }

    .sd-ranking-panel__topline {
        grid-template-columns: 54px minmax(0, 1fr) 60px;
        padding: 12px;
    }

    .sd-ranking-panel__topline span:nth-child(2) {
        padding-left: 4px;
    }

    .sd-live-playlist > li {
        grid-template-columns: 46px minmax(0, 1fr) auto auto;
        gap: 9px;
        min-height: 79px;
        padding: 10px 11px;
    }

    .sd-live-playlist .rank {
        width: 40px;
        min-height: 40px;
        border-radius: 11px;
        font-size: 11px;
    }

    .sd-live-playlist .platform,
    .sd-live-playlist .report-btn {
        display: none;
    }

    .sd-live-playlist .song-title {
        font-size: 13px;
    }

    .sd-live-playlist .song-artist {
        font-size: 11px;
    }

    .sd-live-playlist .vote-btn {
        min-width: 52px;
        min-height: 38px;
        gap: 4px;
    }

    .sd-live-playlist .share-btn {
        min-width: 0;
        min-height: 0;
        padding: 7px 0;
        font-size: 9px;
    }

    .sd-modal-song-form .form-row {
        grid-template-columns: 1fr;
    }

    .sd-submit-modal__body h2 {
        font-size: 37px;
    }

    .sd-modal-bonus {
        align-items: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sd-home-hero *,
    .sd-session-status *,
    .sd-submit-modal * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}






































/* =========================================================
   SONGDROP SUBMIT MODAL – ONE COLUMN + SCROLL FIX
   Ganz unten in index-landing.css einfügen
   ========================================================= */

.sd-submit-modal {
    overflow-y: auto;
    overscroll-behavior: contain;
    align-items: center;
}

/* Modal jetzt nur noch eine breite Formular-Spalte */
.sd-submit-modal__card {
    width: min(100%, 760px);
    height: min(920px, calc(100dvh - 32px));
    max-height: calc(100dvh - 32px);
    display: block;
    overflow: hidden;
}

/* Linke Bild-Spalte komplett entfernen */
.sd-submit-modal__visual {
    display: none;
}

/* Der komplette Formularbereich wird jetzt scrollbar */
.sd-submit-modal__body {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: clamp(28px, 4vw, 48px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 217, 255, .55) rgba(0, 0, 0, .18);
}

/* Chrome / Edge Scrollbar */
.sd-submit-modal__body::-webkit-scrollbar {
    width: 8px;
}

.sd-submit-modal__body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .16);
    border-radius: 99px;
}

.sd-submit-modal__body::-webkit-scrollbar-thumb {
    border: 2px solid rgba(2, 13, 24, .9);
    border-radius: 99px;
    background: linear-gradient(var(--cyan), var(--green));
}

/* Modal auf kleineren Bildschirmen etwas luftiger */
@media (max-width: 760px) {
    .sd-submit-modal {
        align-items: center;
        padding: 12px;
    }

    .sd-submit-modal__card {
        width: 100%;
        height: calc(100dvh - 24px);
        max-height: calc(100dvh - 24px);
        border: 1px solid rgba(117, 224, 255, .23);
        border-radius: 24px;
        align-self: center;
    }

    .sd-submit-modal__body {
        max-height: 100%;
        padding: 28px 20px 32px;
    }
}

@media (max-width: 590px) {
    .sd-submit-modal__body {
        padding: 25px 17px 28px;
    }

    .sd-submit-modal__close {
        top: 14px;
        right: 14px;
    }
}
