:root {
    --primary-violet: #6c5ce7;
    --secondary-blue: #0984e3;
    --accent-orange: #fdcb6e;
    --bg-dark: #0a0a12;
    --text-light: #f5f6fa;
    --glow-color: rgba(108, 92, 231, 0.5);
}

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

html {
    scroll-behavior: smooth; /* Macht das Scrollen sanft */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #130f40 0%, #0a0a12 100%);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.3;
    z-index: 1;
}

.nebula {
    position: absolute;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 1;
}

.nebula-1 { top: -10%; right: -5%; }
.nebula-2 { bottom: -10%; left: -5%; }

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1.2;
    text-align: left;
}

.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--primary-violet) 0%, transparent 60%);
    opacity: 0.3;
    filter: blur(40px);
    z-index: 1;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.subtext {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 300;
    margin-bottom: 45px;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.7);
}

.btn {
    display: inline-block;
    padding: 20px 45px;
    background: linear-gradient(45deg, var(--primary-violet), var(--secondary-blue));
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    border-radius: 12px; /* Weniger rund, moderner */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    animation: buttonGlow 3s infinite; /* Pulsierender Effekt */
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.6);
    background: linear-gradient(45deg, var(--secondary-blue), var(--primary-violet));
}

@keyframes buttonGlow {
    0% { box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(108, 92, 231, 0); }
    100% { box-shadow: 0 0 0 0 rgba(108, 92, 231, 0); }
}

.affiliate-note {
    margin-top: 15px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 450px;
}

.trust-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Scroll Indikator als Link */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none; /* Kein Unterstrich */
    color: white;
    opacity: 0.5;
    transition: opacity 0.3s;
    animation: fadeInOut 3s infinite;
    z-index: 20;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; }
.arrow { width: 8px; height: 8px; border-right: 2px solid white; border-bottom: 2px solid white; transform: rotate(45deg); }

@keyframes fadeInOut {
    0%, 100% { opacity: 0.2; transform: translate(-50%, 0); }
    50% { opacity: 0.6; transform: translate(-50%, 10px); }
}

/* Über Mich Sektion */
.about-short {
    padding: 80px 0; /* Von 120px reduziert */
    background: linear-gradient(to bottom, #0a0a12, #130f40);
    position: relative;
}

.about-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 60px; /* Padding oben/unten reduziert */
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    backdrop-filter: blur(10px);
}

.about-card h2 { font-size: 2.5rem; margin-bottom: 25px; color: var(--accent-orange); }
.about-card p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 20px; }

/* Social Links */
.social-area {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-area p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn svg {
    width: 22px;
    height: 22px;
}

.social-btn.youtube {
    background: #c4302b;
    box-shadow: 0 4px 15px rgba(196, 48, 43, 0.3);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.social-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* Footer */
footer {
    padding: 30px 0; /* Von 60px reduziert */
    text-align: center;
    background: #130f40;
}

.legal-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 15px; }
.legal-links a { color: rgba(255, 255, 255, 0.3); text-decoration: none; font-size: 0.8rem; }
.legal-links a:hover { color: var(--accent-orange); }

@media (max-width: 900px) {
    header { height: auto; padding: 100px 0; }
    .hero-flex { flex-direction: column; text-align: center; gap: 50px; }
    .hero-text { order: 2; }
    .hero-image { order: 1; }
    .image-wrapper { width: 220px; height: 220px; }
    .about-card { padding: 40px 20px; }
    .scroll-indicator { display: none; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(108, 92, 231, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
    background: var(--primary-violet);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.5);
}

.arrow-up {
    width: 10px;
    height: 10px;
    border-left: 2px solid white;
    border-top: 2px solid white;
    transform: rotate(45deg);
    margin-top: 4px;
}
