/* ===== BESTEHENDES CSS (unverändert) ===== */

.sp-container{
  max-width: 1300px; margin: 30px auto; padding: 0 16px;
}
#main, #wrapper {
  background: radial-gradient(circle at 50% 0%, #2a2a2a 0%, #0d0d0d 100%);
}
body.single-star_profile {
  background: radial-gradient(circle at top, #111 0%, #fff 100%);
  color: #fff;
}

/* --- 6 in einer Reihe --- */
.talent-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}
.talent-gallery .gallery-item {
    width: calc(16.66% - 22px);
    text-align: center;
    position: relative;
    min-width: 150px;
}
.talent-gallery .gallery-box {
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: 0.25s ease;
    aspect-ratio: 1 / 1;
}
.talent-gallery .gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.25s ease;
}
.talent-gallery .gallery-box:hover {
    transform: translateY(-10px) scale(1.10);
    box-shadow: 0 12px 22px rgba(0,0,0,0.45);
}
.talent-gallery .gallery-box:hover img {
    filter: brightness(1.18) contrast(1.15);
}
.talent-gallery .gallery-box:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(
        circle at center,
        rgba(255, 215, 0, 0.35),
        rgba(255, 215, 0, 0) 70%
    );
    pointer-events: none;
}
.talent-gallery .name {
    margin-top: 8px;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}


/* ===== ZURÜCK BUTTON ===== */
.sp-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    margin-bottom: 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sp-back-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(252, 185, 0, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sp-back-btn:hover::before {
    opacity: 1;
}

.sp-back-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.sp-back-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(252, 185, 0, 0.4);
    color: #fcb900;
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.sp-back-btn:hover i {
    transform: translateX(-4px);
}

.sp-back-text {
    position: relative;
}


/* ===== LAYOUT ===== */

.sp-layout {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    position: relative;
}

.sp-main {
    flex: 1;
    min-width: 0;
}

/* === CARD === */
.sp-card {
    background: #1a1a1a;
    border-radius: 24px;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05);
    overflow: visible;
    color: #eee;
    position: relative;
}

/* === HERO BILD === */
.sp-thumb-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 24px 24px 0 0;
}

.sp-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.sp-thumb-wrap:hover img {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.sp-thumb-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0) 50%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.sp-thumb-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #fcb900 20%, 
        #ffd700 50%, 
        #fcb900 80%, 
        transparent 100%
    );
    z-index: 2;
    opacity: 0.8;
}


/* === AVATAR === */
.sp-avatar-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    height: 0;
    z-index: 10;
}

.sp-avatar {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #1a1a1a;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.5),
        0 0 0 3px rgba(252, 185, 0, 0.3);
    transform: translateY(-50%);
    background: #111;
    transition: all 0.3s ease;
}

.sp-avatar:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.6),
        0 0 0 4px rgba(252, 185, 0, 0.5),
        0 0 30px rgba(252, 185, 0, 0.2);
}

.sp-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}


/* === CONTENT === */
.sp-content {
    padding: 90px 45px 50px 45px;
    text-align: center;
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    position: relative;
    border-radius: 0 0 24px 24px;
}

.sp-title {
    color: #fcb900;
    margin-bottom: 25px;
    font-family: thealiens, sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    text-shadow: 
        0 0 30px rgba(252, 185, 0, 0.4),
        0 4px 15px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.sp-desc {
    color: rgba(255,255,255,0.85);
    line-height: 1.85;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.sp-desc p {
    margin-bottom: 1.3em;
}


/* === SIDEBAR === */
.sp-sidebar {
    width: 260px;
    flex-shrink: 0;
    z-index: 100;
    position: relative;
}

.sp-sidebar.is-sticky .sp-sidebar-inner {
    position: fixed;
    top: 120px;
    width: 260px;
}

.sp-sidebar.is-stuck-bottom .sp-sidebar-inner {
    position: absolute;
    bottom: 0;
    top: auto;
    width: 260px;
}

.sp-sidebar-inner {
    background: linear-gradient(165deg, #1f1f1f 0%, #141414 100%);
    border-radius: 20px;
    padding: 28px 22px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.06),
        inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.sp-sidebar.is-sticky .sp-sidebar-inner {
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.08),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.sp-sidebar-inner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(252, 185, 0, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.sp-sidebar-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fcb900;
    margin-bottom: 22px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.sp-sidebar-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fcb900, transparent);
    border-radius: 2px;
}

/* === SOCIAL BUTTONS === */
.sp-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sp-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.1) 0%, 
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sp-btn:hover::before {
    opacity: 1;
}

.sp-btn i {
    font-size: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sp-btn[href*="facebook"] i { 
    color: #1877f2; 
    background: rgba(24, 119, 242, 0.15);
}
.sp-btn[href*="instagram"] i { 
    color: #e4405f; 
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.15), rgba(252, 175, 69, 0.15));
}
.sp-btn[href*="tiktok"] i { 
    color: #fff; 
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.2), rgba(255, 0, 80, 0.2));
}
.sp-btn[href*="youtube"] i { 
    color: #ff0000; 
    background: rgba(255, 0, 0, 0.15);
}
.sp-btn[href*="spotify"] i { 
    color: #1db954; 
    background: rgba(29, 185, 84, 0.15);
}
.sp-btn[href*="twitch"] i { 
    color: #9146ff; 
    background: rgba(145, 70, 255, 0.15);
}

.sp-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.sp-btn:hover i {
    transform: scale(1.1);
}

.sp-platform-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* === BADGE MIT COUNTER ANIMATION === */
.sp-badge {
    background: linear-gradient(135deg, #fcb900 0%, #f59e0b 100%);
    color: #000;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(252, 185, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    min-width: 45px;
    text-align: center;
    transition: all 0.3s ease;
}

.sp-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.4) 50%,
        transparent 100%
    );
    animation: none;
}

.sp-badge.is-counting::after {
    animation: shimmer 0.8s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.sp-badge.counted {
    animation: glow-pulse 0.6s ease-out;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 2px 8px rgba(252, 185, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(252, 185, 0, 0.8), 0 0 40px rgba(252, 185, 0, 0.4);
        transform: scale(1.15);
    }
    100% {
        box-shadow: 0 2px 8px rgba(252, 185, 0, 0.3);
        transform: scale(1);
    }
}

.sp-btn:hover .sp-badge {
    box-shadow: 0 4px 15px rgba(252, 185, 0, 0.5);
}

.sp-badge.pop {
    animation: number-pop 0.15s ease-out;
}

@keyframes number-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.sp-form-section {
    margin-top: 70px;
    position: relative;
}

.sp-form-highlight {
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
                radial-gradient(circle at 20% 15%, rgba(252, 185, 0, 0.12), transparent 45%),
                radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.05), transparent 35%),
                #0e0e0e;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 26px;
    padding: 32px;
    box-shadow:
        0 25px 45px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.05),
        inset 0 1px 0 rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
}

.sp-form-highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(252, 185, 0, 0.18), transparent 60%);
    opacity: 0.28;
    pointer-events: none;
}

.sp-form-headline {
    text-align: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.sp-form-title {
    margin: 0 auto 6px;
    color: #fcb900;
    font-family: thealiens, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    text-align: center;
    text-shadow:
        0 0 30px rgba(252, 185, 0, 0.4),
        0 4px 15px rgba(0,0,0,0.5);
}

.sp-form-title::after,
.sp-form-title::before {
    content: "";
    height: 2px;
    width: 42px;
    background: linear-gradient(90deg, transparent, #fcb900, transparent);
    opacity: 0.7;
}

.sp-form-highlight form {
    position: relative;
    z-index: 1;
}

.sp-form-highlight .wpforms-form {
    margin-top: 10px;
}

.sp-form-highlight .wpforms-field {
    margin-bottom: 14px;
}

.sp-fullwidth-block {
    margin-top: 60px;
    width: 100%;
    display: block;
}

.sp-fullwidth-block > * {
    width: 100%;
    max-width: 100%;
}

.sp-form-highlight input,
.sp-form-highlight textarea,
.sp-form-highlight select {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.sp-form-highlight input:focus,
.sp-form-highlight textarea:focus,
.sp-form-highlight select:focus {
    border-color: rgba(252, 185, 0, 0.7);
    box-shadow: 0 0 0 2px rgba(252, 185, 0, 0.15);
}

.sp-form-highlight button,
.sp-form-highlight input[type="submit"] {
    background: linear-gradient(135deg, #fcb900 0%, #ffcc33 100%);
    color: #0b0b0b;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(252, 185, 0, 0.35);
    transition: transform 0.12s ease, box-shadow 0.2s ease;
}

.sp-form-highlight button:hover,
.sp-form-highlight input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(252, 185, 0, 0.45);
}

.sp-form-highlight button:active,
.sp-form-highlight input[type="submit"]:active {
    transform: translateY(0);
}


/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
    .sp-layout {
        flex-direction: column;
        gap: 25px;
    }
    
    .sp-sidebar {
        width: 100%;
        order: 2;
    }
    
    .sp-sidebar.is-sticky .sp-sidebar-inner,
    .sp-sidebar.is-stuck-bottom .sp-sidebar-inner {
        position: relative;
        top: auto;
        bottom: auto;
        width: 100%;
    }
    
    .sp-sidebar-inner {
        padding: 22px 20px;
    }
    
    .sp-socials {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .sp-btn {
        flex: 0 1 auto;
        padding: 12px 16px;
    }
    
    .sp-platform-name {
        display: none;
    }
    
    .sp-content {
        padding: 80px 25px 35px 25px;
    }
    
    .sp-avatar {
        width: 120px;
        height: 120px;
    }
    
    .sp-back-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .sp-thumb-wrap {
        aspect-ratio: 4/3;
    }
    
    .sp-container {
        padding: 0 12px;
        margin: 15px auto;
    }
    
    .sp-btn {
        padding: 10px 14px;
    }
    
    .sp-btn i {
        font-size: 18px;
        width: 24px;
        height: 24px;
    }
    
    .sp-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .sp-avatar {
        width: 100px;
        height: 100px;
        border-width: 4px;
    }
    
    .sp-content {
        padding-top: 65px;
    }
}

@media (max-width: 480px) {
    .sp-thumb-wrap {
        aspect-ratio: 1/1;
    }
    
    .sp-content {
        padding: 55px 18px 25px 18px;
    }
    
    .sp-title {
        font-size: 2rem;
    }
    
    .sp-avatar {
        width: 90px;
        height: 90px;
    }
    
    .sp-fullwidth-block {
        margin-top: 40px;
    }
}