/* =========================================================
   TUNINGFREAK29 - OFFICIAL GAMING HUB
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

:root {
    --bg-dark: #050608;
    --cyan: #00f2fe;
    --pink: #ff007f;
    --purple: #8a2be2;
    --twitch: #9146ff;
    --youtube: #ff0000;
    --tiktok: #00f2fe;
    --insta: #e1306c;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --glass-bg: rgba(13, 16, 26, 0.85);
    --glass-border: rgba(255, 255, 255, 0.12);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) rgba(5, 6, 8, 0.9);
}

/* Eigene Webkit Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(5, 6, 8, 0.95);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cyan), var(--pink));
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--pink), var(--cyan));
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,242,254,0.06), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255,0,127,0.06), transparent 30%),
        var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* SPECIAL LEVEL UP OVERLAY */
.level-up-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(3, 4, 7, 0.95);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.level-up-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.level-up-glow-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,242,254,0.35), rgba(255,0,127,0.25) 50%, transparent 70%);
    border-radius: 50%;
    animation: overlayGlowPulse 3s infinite alternate ease-in-out;
}

@keyframes overlayGlowPulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 1; filter: drop-shadow(0 0 40px var(--cyan)); }
}

.level-up-content {
    position: relative;
    z-index: 2;
    text-align: center;
    transform: scale(0.7) translateY(30px);
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.level-up-overlay.active .level-up-content {
    transform: scale(1) translateY(0);
}

.level-up-badge-ring {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px rgba(0,242,254,0.6);
    animation: ringSpin 6s linear infinite;
}

@keyframes ringSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.level-up-icon {
    font-size: 3.5rem;
    color: #ffd700;
    filter: drop-shadow(0 0 15px #ffd700);
    animation: pulseIcon 1.2s infinite ease-in-out;
}

.level-up-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--pink), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0,242,254,0.3);
}

.level-up-sub {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 800;
    margin-top: 0.8rem;
    letter-spacing: 0.5px;
}

.level-up-sparkles {
    margin-top: 1.2rem;
    font-size: 0.9rem;
    color: var(--cyan);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: sparkleBlink 1.5s infinite alternate ease-in-out;
}

@keyframes sparkleBlink {
    0% { opacity: 0.4; text-shadow: 0 0 5px var(--cyan); }
    100% { opacity: 1; text-shadow: 0 0 15px var(--cyan); }
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* TICKER */
.news-ticker {
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 0;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.ticker-content {
    display: inline-block;
    animation: ticker 25s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* CURSOR */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cyan);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none !important;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--cyan);
}

.cursor-outline {
    width: 35px;
    height: 35px;
    border: 2px solid var(--pink);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none !important;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.cursor-hover .cursor-outline {
    width: 55px;
    height: 55px;
    border-color: var(--cyan);
    background: rgba(0, 242, 254, 0.15);
}

/* CANVAS & INTERACTIVE BACKGROUND */
#particle-canvas, #confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}
#particle-canvas { z-index: 0; pointer-events: auto; }
#confetti-canvas { z-index: 9990; pointer-events: none !important; }

/* NAVBAR MIT SMART HIDE/SHOW BEIM SCROLLEN */
.navbar {
    position: fixed;
    top: 26px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0.8rem 4%;
    background: rgba(5, 6, 8, 0.9);
    backdrop-filter: blur(18px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.nav-hidden {
    transform: translateY(-160%);
}

.logo-wrapper {
    min-width: 120px;
    min-height: 38px;
    background: #000;
    padding: 6px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-img {
    height: 34px;
    max-width: 180px;
    object-fit: contain;
}

.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.2rem;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
}

.navbar nav ul {
    display: flex;
    list-style: none;
    gap: 0.45rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navbar nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 8px 11px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.navbar nav a:hover, .navbar nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 20px rgba(0,242,254,0.35);
    text-shadow: 0 0 8px var(--cyan);
    transform: translateY(-2px);
}

.shop-nav-link {
    background: linear-gradient(90deg, rgba(0,242,254,0.15), rgba(255,0,127,0.15));
    border: 1px solid rgba(0,242,254,0.4);
    color: var(--cyan) !important;
}

.shop-nav-link:hover {
    background: linear-gradient(90deg, var(--cyan), var(--pink)) !important;
    color: #fff !important;
}

.impressum-link {
    border: 1px solid rgba(255,255,255,0.08);
}

/* LAYOUT & SMOOTH PANELS */
.container {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    margin: 130px auto 60px;
    padding: 0 20px;
}

.page-content {
    display: none;
    opacity: 0;
    transform: translateY(25px);
}

.page-content.active-page {
    display: block;
    animation: autoBuildWebsite 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes autoBuildWebsite {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
        filter: brightness(0.6) blur(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: brightness(1) blur(0);
    }
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    margin-bottom: 2rem;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.6s ease, box-shadow 0.6s ease;
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 242, 254, 0.12);
}

.tilt-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
}

.section-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.text-center { text-align: center; }

/* HOME COMPONENTS */
.home-hero-section {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1rem 0;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: linear-gradient(90deg, rgba(255,0,127,0.15), rgba(0,242,254,0.15));
    border: 1px solid var(--pink);
    color: var(--pink);
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: 30px;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(255,0,127,0.3);
    animation: badgePulseHome 3s infinite alternate ease-in-out;
}

@keyframes badgePulseHome {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(255,0,127,0.2); }
    100% { transform: scale(1.05); box-shadow: 0 0 25px rgba(0,242,254,0.5); }
}

.home-main-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(0,242,254,0.2);
}

.home-main-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* DEZENTER TWITCH STATUS PILL */
.twitch-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.twitch-status-pill.offline {
    background: rgba(145, 70, 255, 0.08);
    color: #b190ff;
    border-color: rgba(145, 70, 255, 0.3);
}

.twitch-status-pill.online {
    background: rgba(0, 255, 136, 0.12);
    color: #00ff88;
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.twitch-status-pill .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.twitch-status-pill.online .status-dot {
    animation: liveDotPulse 1.2s infinite ease-in-out;
}

@keyframes liveDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

.banner-card {
    padding: 8px;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
}

.banner-img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.live-status {
    background: rgba(0,0,0,0.85);
    border: 1px solid var(--pink);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: communityBadgeMotion 3.5s infinite ease-in-out;
}

@keyframes communityBadgeMotion {
    0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 0 10px rgba(255,0,127,0.3); }
    50% { transform: translateY(-4px) scale(1.03); box-shadow: 0 0 20px rgba(0,242,254,0.6); }
}

.icon-bounce {
    animation: iconBounceSubtle 1.8s infinite ease-in-out;
}

@keyframes iconBounceSubtle {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

.profile-card { text-align: center; }

.avatar-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    margin: 0 auto 1.2rem;
}

.glow-pulse {
    animation: neonGlow 3s infinite alternate ease-in-out;
}

@keyframes neonGlow {
    0% { box-shadow: 0 0 10px rgba(0,242,254,0.3); }
    100% { box-shadow: 0 0 25px rgba(255,0,127,0.6); }
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #000;
}

.creator-title { font-size: 2.2rem; font-weight: 900; }
.tagline { color: var(--cyan); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.8rem; }

.xp-bar-wrapper { max-width: 450px; margin: 1rem auto 1.5rem; text-align: left; }
.xp-info { display: flex; justify-content: space-between; font-size: 0.75rem; font-weight: 800; color: var(--cyan); margin-bottom: 4px; }
.xp-bar { width: 100%; height: 14px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; border: 1px solid rgba(0,242,254,0.3); }
.xp-progress { width: 0%; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--pink)); box-shadow: 0 0 10px var(--cyan); transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1); }

.stats-grid { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.stat-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 1rem 1.5rem; border-radius: 16px; min-width: 130px; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.stat-box:hover { border-color: var(--cyan); transform: translateY(-3px); }
.stat-number { font-size: 1.8rem; font-weight: 900; color: var(--pink); }
.stat-label { display: block; font-size: 0.8rem; color: var(--text-muted); }

.home-extra-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.card-heading { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card-p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.schedule-list { list-style: none; text-align: left; }
.schedule-list li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; display: flex; justify-content: space-between; gap: 10px; }
.glow-text { color: var(--cyan); text-shadow: 0 0 8px var(--cyan); }

.hype-btn {
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    border: none;
    color: #fff;
    font-weight: 900;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(0,242,254,0.4);
    margin-top: 10px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hype-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0,242,254,0.7), 0 0 15px rgba(255,0,127,0.5);
}

.home-scroll-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1rem; }
.full-width-panel { width: 100%; }

.gear-list { list-style: none; text-align: left; }
.gear-list li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; display: flex; align-items: center; gap: 10px; }
.gear-list li i { color: var(--cyan); font-size: 1rem; width: 20px; }

/* PARTNER BEREICH */
.partner-page-icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(0,242,254,0.2), rgba(255,0,127,0.2));
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cyan);
    box-shadow: 0 0 20px rgba(0,242,254,0.3);
    animation: partnerIconPulse 2.5s infinite alternate ease-in-out;
}

@keyframes partnerIconPulse {
    0% { transform: scale(1); box-shadow: 0 0 12px rgba(0,242,254,0.25); }
    100% { transform: scale(1.06); box-shadow: 0 0 25px rgba(255,0,127,0.5); }
}

.special-partners-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.special-partner-card {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 20, 35, 0.95), rgba(8, 10, 18, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.8rem;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.partner-glow-effect {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, rgba(0, 242, 254, 0.2), rgba(255, 0, 127, 0.1) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1;
    transform: scale(0.5);
}

.special-partner-card:hover .partner-glow-effect {
    opacity: 1;
    transform: scale(1.1);
    animation: partnerGlowRotate 8s linear infinite;
}

@keyframes partnerGlowRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.partner-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.partner-logo-box {
    width: 200px;
    height: 140px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.35));
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.special-partner-card:hover .partner-logo-box {
    border-color: var(--cyan);
    background: rgba(0, 242, 254, 0.06);
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0,242,254,0.3);
}

.special-partner-card:hover .partner-logo-box img {
    transform: scale(1.08);
}

.partner-info-box {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
    flex-grow: 1;
}

.partner-badge {
    padding: 4px 12px;
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.special-partner-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    transition: color 0.3s ease;
}

.special-partner-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.partner-link-btn {
    margin-top: 0.4rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--pink);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.special-partner-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.2), 0 0 25px rgba(255, 0, 127, 0.15);
    transform: translateY(-4px);
}

.special-partner-card:hover h3 {
    color: var(--cyan);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.special-partner-card:hover .partner-link-btn {
    color: var(--cyan);
    transform: translateX(6px);
}

/* SOCIAL MEDIA OVERLAY */
.social-hero-header {
    margin-bottom: 2.5rem;
}

.social-cyber-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(90deg, rgba(0,242,254,0.15), rgba(138,43,226,0.15));
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 30px;
    margin-bottom: 0.8rem;
    box-shadow: 0 0 20px rgba(0,242,254,0.25);
}

.social-neon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.neon-channel-card {
    position: relative;
    background: linear-gradient(145deg, rgba(12, 15, 25, 0.9), rgba(5, 7, 12, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 1.8rem;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.neon-glow-border {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--cyan), var(--pink), var(--purple));
    border-radius: 24px;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.neon-channel-card:hover .neon-glow-border {
    opacity: 0.6;
}

.neon-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
}

.neon-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.neon-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    flex-shrink: 0;
}

.yt-glow { background: var(--youtube); box-shadow: 0 0 20px rgba(255,0,0,0.4); }
.twitch-glow { background: var(--twitch); box-shadow: 0 0 20px rgba(145,70,255,0.4); }
.tiktok-glow { background: #000; border: 1px solid var(--cyan); color: var(--cyan); box-shadow: 0 0 20px rgba(0,242,254,0.4); }
.insta-glow { background: var(--insta); box-shadow: 0 0 20px rgba(225,48,108,0.4); }

.neon-channel-card h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
}

.neon-handle {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.neon-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
}

.neon-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-yt-neon { background: var(--youtube); }
.btn-twitch-neon { background: var(--twitch); }
.btn-tiktok-neon { background: linear-gradient(90deg, #00f2fe, var(--purple)); color: #000; }
.btn-insta-neon { background: var(--insta); }

.neon-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255,255,255,0.35);
}

.neon-channel-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 25px rgba(0,242,254,0.2);
    transform: translateY(-4px);
}

/* TEAM BEREICH */
.team-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem; 
    margin-top: 2rem; 
}

.team-card { 
    text-align: center; 
    position: relative; 
    padding: 3rem 1.8rem 2rem; 
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.clickable-team-card { cursor: pointer; }
.clickable-team-card:hover { 
    border-color: var(--cyan); 
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.25), 0 0 20px rgba(255, 0, 127, 0.15); 
    transform: translateY(-4px);
}

.team-avatar { 
    width: 110px; 
    height: 110px; 
    margin: 0 auto 1.2rem; 
    border-radius: 50%; 
    overflow: hidden; 
    border: 3px solid var(--cyan); 
    background: rgba(0,0,0,0.5); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 0 20px rgba(0,242,254,0.4);
    transition: transform 0.5s ease, border-color 0.5s ease;
}

.clickable-team-card:hover .team-avatar {
    transform: scale(1.06) rotate(2deg);
    border-color: var(--pink);
}

.team-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-badge { 
    position: absolute; 
    top: 14px; 
    left: 50%; 
    transform: translateX(-50%); 
    padding: 5px 14px; 
    border-radius: 20px; 
    font-size: 0.7rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    white-space: nowrap; 
    box-shadow: 0 0 15px rgba(0,0,0,0.6); 
    letter-spacing: 0.5px;
}

.owner-badge { background: linear-gradient(90deg, #ff8c00, #ff007f); color: #fff; }
.dev-badge { background: linear-gradient(90deg, #00f2fe, #8a2be2); color: #fff; }
.mod-badge { background: linear-gradient(90deg, #00ff88, #00b8ff); color: #000; }
.family-badge { background: linear-gradient(90deg, #ff0055, #ff5500); color: #fff; }

.team-card h3 { font-size: 1.4rem; font-weight: 900; margin-top: 0.4rem; color: #fff; }
.team-role { font-size: 0.85rem; color: var(--cyan); font-weight: 700; margin-bottom: 0.8rem; }
.team-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

.team-tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.team-tags .tag { font-size: 0.65rem; font-weight: 800; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 3px 8px; border-radius: 8px; color: var(--cyan); }

.card-click-hint { font-size: 0.75rem; color: var(--pink); margin-top: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s ease; }
.clickable-team-card:hover .card-click-hint { color: var(--cyan); text-shadow: 0 0 8px var(--cyan); }

.modal-overlay { position: fixed; inset: 0; z-index: 5000; background: rgba(0,0,0,0.88); backdrop-filter: blur(20px); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.is-open { display: flex; }

.modal-container { position: relative; max-width: 520px; width: 100%; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 28px; padding: 2.5rem; color: #fff; box-shadow: 0 25px 70px rgba(0,0,0,0.9); }

.modal-overlay.is-open .modal-animated { animation: modal3DPop 0.5s cubic-bezier(0.16, 1, 0.3, 1); }

@keyframes modal3DPop {
    0% { opacity: 0; transform: scale(0.85) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; transition: color 0.3s ease; }
.modal-close:hover { color: var(--pink); }

.modal-avatar { width: 120px; height: 120px; margin: 0 auto 1rem; border-radius: 50%; overflow: hidden; border: 3px solid var(--cyan); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 25px var(--cyan); }
.modal-avatar img { width: 100%; height: 100%; object-fit: cover; }
.modal-bio-text { margin: 1rem 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.modal-stats-grid { display: flex; gap: 1rem; justify-content: center; margin-top: 1.2rem; }

/* GESCHICHTE BEREICH */
.story-lead { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 1rem; }
.highlight-quote { border-left: 4px solid var(--cyan); padding-left: 1rem; margin: 1.5rem 0; font-size: 1.05rem; font-style: italic; color: var(--cyan); }
.sub-heading { margin-top: 1.5rem; }

.accordion { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1rem; }
.accordion-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; transition: border-color 0.4s ease; }
.accordion-item:hover { border-color: rgba(0,242,254,0.3); }
.accordion-header { width: 100%; padding: 1rem 1.2rem; background: none; border: none; color: #fff; font-weight: 700; font-size: 0.95rem; display: flex; justify-content: space-between; align-items: center; text-align: left; transition: color 0.3s ease; }
.accordion-header:hover { color: var(--cyan); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.5s ease; padding: 0 1.2rem; color: var(--text-muted); font-size: 0.9rem; }
.accordion-item.active .accordion-content { max-height: 300px; padding: 0.8rem 1.2rem 1.2rem; }

/* ÜBER MICH BEREICH */
.about-interactive-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 1.5rem 0 1.8rem;
}

.about-action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.about-action-btn:hover, .about-action-btn.active-about-btn {
    background: linear-gradient(90deg, rgba(0,242,254,0.15), rgba(255,0,127,0.15));
    border-color: var(--cyan);
    color: #fff;
    box-shadow: 0 0 15px rgba(0,242,254,0.3);
    transform: translateY(-2px);
}

.about-interactive-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.about-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.about-tab-content.active-tab {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.funfacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.2rem;
}

.funfact-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
}

.funfact-card i {
    font-size: 1.8rem;
    color: var(--cyan);
    margin-bottom: 0.6rem;
}

.funfact-card h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #fff;
}

.funfact-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.preferences-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pref-badge-item {
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    color: var(--cyan);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.long-about-text p { margin-bottom: 1.2rem; font-size: 0.95rem; color: var(--text-main); line-height: 1.7; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.activity-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 1.8rem; border-radius: 20px; text-align: center; transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease; }
.activity-card:hover { transform: translateY(-4px); }
.hover-glow:hover { border-color: var(--pink); box-shadow: 0 0 25px rgba(255,0,127,0.3); }

/* GALERIE BEREICH */
.photo-gallery.modern-aligned-grid { 
    display: grid; 
    grid-template-columns: repeat(3, minmax(0, 1fr)); 
    gap: 1.5rem; 
    align-items: stretch; 
}

.playful-card { 
    position: relative; 
    min-width: 0; 
    background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018)); 
    border: 1px solid rgba(255,255,255,0.13); 
    border-radius: 22px; 
    padding: 12px; 
    overflow: hidden; 
    transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease; 
    box-shadow: 0 10px 35px rgba(0,0,0,0.25); 
    cursor: pointer; 
    display: flex;
    flex-direction: column;
}

.playful-card:hover { 
    border-color: rgba(0,242,254,0.7); 
    box-shadow: 0 18px 45px rgba(0,0,0,0.5), 0 0 30px rgba(0,242,254,0.25);
    transform: translateY(-5px);
}

.playful-badge { position: relative; display: inline-flex; align-items: center; gap: 6px; margin: 2px 2px 10px; padding: 5px 10px; border-radius: 999px; font-size: 0.68rem; font-weight: 800; color: #fff; z-index: 2; width: fit-content; }
.badge-fun { background: linear-gradient(90deg, #00f2fe, #8a2be2); }
.badge-hot { background: linear-gradient(90deg, #ff007f, #ff4d00); }
.badge-star { background: linear-gradient(90deg, #8a2be2, #ff007f); }
.badge-cool { background: linear-gradient(90deg, #00f2fe, #00aaff); }

.photo-item-inner { position: relative; width: 100%; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 16px; background: rgba(0, 0, 0, 0.75); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
.gallery-img { display: block; width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s ease; }
.photo-item-inner:hover .gallery-img { transform: scale(1.04); }

.card-overlay-playful { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; padding: 14px; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 55%); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.photo-item-inner:hover .card-overlay-playful { opacity: 1; }
.card-overlay-playful span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(5,6,8,0.85); border: 1px solid rgba(0,242,254,0.5); color: #fff; font-size: 0.8rem; font-weight: 800; transition: transform 0.3s ease; }
.card-overlay-playful span:hover { transform: scale(1.04); }

.playful-caption { padding: 12px 5px 3px; text-align: center; margin-top: auto; }
.playful-caption h4 { margin: 4px 0 5px; font-size: 1rem; color: #fff; font-weight: 800; transition: color 0.3s ease; }
.playful-card:hover .playful-caption h4 { color: var(--cyan); }
.playful-caption p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

.full-width-card { grid-column: 1 / -1; }
.duo-photo-container { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.duo-item { aspect-ratio: 16 / 9; }

/* TRIPLE PHOTO CONTAINER FÜR PC SHOWCASE */
.triple-photo-container { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.triple-item { aspect-ratio: 16 / 9; }

/* LIGHTBOX VIEWER */
.lightbox { 
    display: none; 
    position: fixed; 
    inset: 0; 
    z-index: 2000; 
    background: rgba(3, 4, 6, 0.94); 
    backdrop-filter: blur(25px); 
    align-items: center; 
    justify-content: space-between; 
    padding: 40px 30px; 
}

.lightbox.is-open { display: flex; }

.lightbox-content-box { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    max-width: 1200px; 
    width: 100%; 
    height: 100%;
}

.lightbox-close { 
    position: absolute; 
    top: 25px; 
    right: 30px; 
    width: 52px; 
    height: 52px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    font-size: 24px; 
    background: rgba(255,255,255,0.08); 
    border: 1px solid rgba(255,255,255,0.18); 
    border-radius: 50%; 
    cursor: pointer; 
    z-index: 2100; 
    transition: all 0.4s ease; 
}

.lightbox-close:hover { 
    background: var(--pink); 
    transform: rotate(90deg) scale(1.08); 
    box-shadow: 0 0 20px var(--pink);
}

.lightbox-arrow { 
    width: 60px; 
    height: 60px; 
    background: rgba(255,255,255,0.08); 
    border: 1px solid rgba(255,255,255,0.2); 
    color: #fff; 
    font-size: 22px; 
    border-radius: 50%; 
    cursor: pointer; 
    z-index: 2100; 
    transition: all 0.4s ease;
}

.lightbox-arrow:hover { 
    background: var(--cyan); 
    color: #000; 
    box-shadow: 0 0 25px var(--cyan); 
    transform: scale(1.08);
}

.lightbox-img-wrapper { 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    max-height: 80vh; 
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-counter { 
    margin-top: 18px; 
    padding: 6px 18px; 
    border-radius: 999px; 
    background: rgba(255, 255, 255, 0.08); 
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--cyan); 
    font-size: 0.85rem; 
    font-weight: 800; 
}

/* MEDIA QUERIES FOR MOBILE */
@media (max-width: 768px) {
    * { cursor: auto !important; }
    .cursor-dot, .cursor-outline { display: none; }
    
    .navbar { 
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center;
        padding: 0.65rem 4%; 
        top: 22px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 6, 8, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-menu.is-open {
        max-height: 450px;
    }

    .navbar nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0.5rem;
    }

    .navbar nav a {
        justify-content: flex-start;
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .container { 
        margin-top: 120px; 
        padding: 0 12px; 
    }

    .special-partner-card {
        padding: 1.2rem;
    }

    .partner-card-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .partner-logo-box {
        width: 100%;
        height: 140px;
    }

    .photo-gallery.modern-aligned-grid { grid-template-columns: 1fr; }
    .full-width-card { grid-column: auto; }
    .duo-photo-container { grid-template-columns: 1fr; }
    .triple-photo-container { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    
    .lightbox {
        padding: 15px 10px;
    }
    .lightbox-arrow { width: 40px; height: 40px; font-size: 14px; }
    .lightbox-close { width: 40px; height: 40px; font-size: 18px; top: 12px; right: 12px; }
}