:root {
    /* Palette: Modern Organic Dark */
    --accent-orange: #f97316; /* Vibrant Orange */
    --accent-green: #10b981;  /* Natural Emerald Green */
    
    --bg-dark: #09090b;       /* Deepest Black-Blue */
    --card-glass: rgba(24, 24, 27, 0.7); /* Transparenter für Glassmorphism */
    --card-border: rgba(255, 255, 255, 0.08);
    
    --text-main: #fafafa;
    --text-muted: #a1a1aa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* --- BACKGROUND ANIMATION (Organic Blobs) --- */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    width: 400px; height: 400px;
    background: var(--accent-orange);
    top: -100px; left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px; height: 300px;
    background: var(--accent-green);
    bottom: -50px; right: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 200px; height: 200px;
    background: #3b82f6; /* Kleiner blauer Akzent für Tiefe */
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Hauptkarte: Glassmorphism */
.card {
    background: var(--card-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--card-border);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-radius: 32px;
    padding: 0;
    width: 90%;
    max-width: 440px;
    height: 820px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
}

/* Header */
.header-section {
    padding: 3rem 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.avatar-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
}

/* Animierter Avatar-Rahmen */
.avatar-border {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-green));
    animation: spinSlow 10s linear infinite;
    opacity: 0.8;
}

.avatar-img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    border: 4px solid #18181b;
    background-color: #27272a;
}

.status-badge {
    position: absolute;
    bottom: 5px; right: 5px;
    width: 20px; height: 20px;
    background-color: var(--accent-green);
    border: 3px solid #18181b;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    z-index: 2;
}

h1 {
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -1px;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.divider-dot { width: 4px; height: 4px; background: var(--accent-green); border-radius: 50%; }

/* --- TABS --- */
.tabs-container {
    padding: 1rem 2rem 0.5rem;
    display: flex;
    justify-content: center;
}

.tabs {
    background: rgba(0,0,0,0.2);
    border-radius: 100px;
    padding: 5px;
    display: inline-flex;
    gap: 5px;
    border: 1px solid rgba(255,255,255,0.05);
}

.tab-btn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn:hover { color: var(--text-main); }

.tab-btn.active {
    background-color: rgba(255,255,255,0.1);
    color: var(--text-main);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* --- CONTENT --- */
.content-area {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem 2rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.content-area::-webkit-scrollbar { width: 4px; }
.content-area::-webkit-scrollbar-track { background: transparent; }
.content-area::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }

.tab-content { display: none; flex-direction: column; gap: 12px; }
.tab-content.active { display: flex; }

/* --- STAGGERED ANIMATIONS --- */
.animate-item {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-item:nth-child(1) { animation-delay: 0.05s; }
.animate-item:nth-child(2) { animation-delay: 0.1s; }
.animate-item:nth-child(3) { animation-delay: 0.15s; }
.animate-item:nth-child(4) { animation-delay: 0.2s; }
.animate-item:nth-child(5) { animation-delay: 0.25s; }
.animate-item:nth-child(6) { animation-delay: 0.3s; }

@keyframes slideUpFade {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spinSlow { 100% { transform: rotate(360deg); } }

/* --- LINKS --- */
.link-card {
    display: flex;
    align-items: center;
    padding: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 4px;
    background: transparent;
    transition: 0.3s;
}

.link-card:hover {
    background: rgba(255,255,255,0.06);
    transform: scale(1.02);
    border-color: rgba(255,255,255,0.1);
}

.link-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    font-size: 1.2rem;
    margin-right: 16px;
    color: var(--text-muted);
    transition: 0.3s;
}

/* Hover Colors */
.link-card:hover .link-icon.twitch { color: #9146FF; background: rgba(145, 70, 255, 0.15); box-shadow: 0 0 15px rgba(145, 70, 255, 0.2); }
.link-card:hover .link-icon.youtube { color: #FF0000; background: rgba(255, 0, 0, 0.15); box-shadow: 0 0 15px rgba(255, 0, 0, 0.2); }
.link-card:hover .link-icon.soundcloud { color: #ff5500; background: rgba(255, 85, 0, 0.15); box-shadow: 0 0 15px rgba(255, 85, 0, 0.2); }
.link-card:hover .link-icon.telegram { color: #0088cc; background: rgba(0, 136, 204, 0.15); box-shadow: 0 0 15px rgba(0, 136, 204, 0.2); }
.link-card:hover .link-icon.kofi { color: #FF5E5B; background: rgba(255, 94, 91, 0.15); box-shadow: 0 0 15px rgba(255, 94, 91, 0.2); }

.link-info { flex-grow: 1; }
.link-name { display: block; font-weight: 700; font-size: 1rem; letter-spacing: -0.3px; }
.link-sub { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.arrow-icon { opacity: 0.3; transition: 0.3s; transform: translateX(0); }
.link-card:hover .arrow-icon { opacity: 1; transform: translateX(4px); color: var(--accent-green); }


/* --- FAQ --- */
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover { background: rgba(255,255,255,0.05); }

.faq-question {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0; opacity: 0; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 22px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item.open { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.1); }
.faq-item.open .faq-answer { max-height: 1000px; opacity: 1; padding-bottom: 22px; padding-top: 10px; border-top-color: rgba(255,255,255,0.05); }
.faq-item.open .faq-question { color: var(--accent-orange); }
.chevron { transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); font-size: 0.8rem; opacity: 0.6; }
.faq-item.open .chevron { transform: rotate(180deg); color: var(--accent-green); opacity: 1; }

/* --- MEDIA GRID --- */
.section-title {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-muted); margin: 24px 0 12px; font-weight: 800;
    display: flex; align-items: center; gap: 10px;
}
.section-title::after { content: ''; height: 1px; flex-grow: 1; background: rgba(255,255,255,0.1); }
.section-title i { color: var(--accent-green); }

.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 10px; }

.media-card {
    aspect-ratio: 2/3;
    background: #27272a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(20%) brightness(0.9);
}

.media-card:hover { transform: translateY(-6px); box-shadow: 0 12px 24px -8px rgba(0,0,0,0.5); }
.media-card:hover img { transform: scale(1.1); filter: grayscale(0%) brightness(1.1); }

.media-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
    background: var(--accent-green); transform: scaleX(0); transition: 0.3s; transform-origin: left;
}
.media-card:hover::after { transform: scaleX(1); }

.media-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 8px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white; font-size: 0.7rem; font-weight: 700; text-align: center;
    opacity: 0; transition: 0.3s; transform: translateY(10px);
}
.media-card:hover .media-overlay { opacity: 1; transform: translateY(0); }

/* Footer */
.footer {
    text-align: center; padding: 1.5rem; font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 480px) {
    .card { width: 100%; height: 100%; border-radius: 0; border: none; }
    .tabs { width: 100%; justify-content: space-between; }
    .tab-btn { flex: 1; padding: 12px 0; text-align: center; }
    .media-grid { grid-template-columns: repeat(2, 1fr); }
}