﻿
/* --- NEUER STARTBEREICH STYLES (HERO SECTION) --- */
.hero-wrapper {
    position: relative;
    width: 95%;
    max-width: 1400px;
    min-height: 500px; /* Höhe für PC */
    border-radius: 30px;
    /* WICHTIG: 140px Abstand nach oben für den Header, auto für Zentrierung */
    margin: 140px auto 50px auto; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.05), inset 0 0 100px rgba(0,0,0,0.8);
    z-index: 1; /* Stellt sicher, dass er über dem Hintergrund liegt, aber unter Nav/Popup */
}

/* Animierter Hintergrund-Effekt */
.hero-bg-anim {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%, #000),
        linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%, #000);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.1;
    z-index: 1;
    animation: bgSlide 20s linear infinite;
}
@keyframes bgSlide { from { background-position: 0 0, 30px 30px; } to { background-position: 60px 60px, 90px 90px; } }

.hero-content {
    position: relative;
    z-index: 10;
    padding: 20px;
    max-width: 800px;
    animation: heroFadeIn 1s ease-out;
}
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold-main);
    border-radius: 50px;
    color: var(--gold-main);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #fff 20%, #ffd700 50%, #b8860b 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.2));
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-btn {
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-btn.primary {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}
.hero-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.hero-btn.secondary {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}
.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-5px);
}

/* Schwebende Elemente im Hintergrund */
.floater {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    opacity: 0.4;
    animation: floatAnim 6s ease-in-out infinite;
    will-change: transform;
}
.f1 { width: 150px; height: 150px; background: var(--gold-main); top: 10%; left: 10%; animation-delay: 0s; }
.f2 { width: 200px; height: 200px; background: #ff0055; bottom: 10%; right: 10%; animation-delay: 2s; }
.f3 { width: 100px; height: 100px; background: #00d2ff; top: 20%; right: 20%; animation-delay: 1s; }

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* --- MOBILE ANPASSUNGEN FÜR HERO --- */
@media (max-width: 768px) {
    .hero-wrapper {
        min-height: auto;
        padding: 40px 15px;
        margin-bottom: 25px;
        border-radius: 20px;
    }
    .hero-title {
        font-size: 2.2rem; /* Viel kleiner für Handy */
        letter-spacing: -1px;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    .floater { opacity: 0.2; } /* Weniger Ablenkung mobil */
    /* Nur die erste Werbung auf Mobile zeigen */
    #ad-slot-2, #ad-slot-3 {
        display: none !important;
    }
}