/* --- IMPORTS & ROOT VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap');

:root {
    --bg-dark: #121212;
    --bg-light: #1E1E1E;
    --accent-primary: #ff3366;
    --accent-secondary: #ff6b35;
    --text-primary: #FFFFFF;
    --text-secondary: #b3b3b3;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-family: 'Inter', sans-serif;
}

/* --- GENERAL & RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
a { color: var(--accent-primary); text-decoration: none; }
section { padding: 6rem 0; }

/* --- HEADER --- */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}
.landing-header.scrolled {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}
.landing-nav { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo i { font-size: 2rem; color: var(--accent-primary); }
.logo h1 { font-size: 1.8rem; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 500; color: var(--text-secondary); transition: color 0.3s ease; }
.nav-links a:hover { color: var(--text-primary); }
.nav-login-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
}
.cta-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}
.primary-cta {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
}
.primary-cta:hover { transform: scale(1.05); box-shadow: 0 5px 20px rgba(255, 51, 102, 0.3); }

/* --- HERO SECTION --- */
.hero {
    padding-top: 12rem;
    padding-bottom: 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 51, 102, 0.2), transparent 40%);
    opacity: 0.5;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero-img {
    max-height: 250px;
    margin-top: -75px;
}
.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text-primary) 70%, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}
.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}
.hero-cta-btn { font-size: 1.1rem; }
.no-subscription-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.no-subscription-badge i {
    color: #1ED760; /* Ein vertrauenswürdiges Grün */
    font-size: 1.2rem;
}
.hero-cta span { display: block; margin-top: 0.75rem; font-size: 0.9rem; color: var(--text-secondary); }
.no-subscription-badge span {margin-top: 0px;}
/* Hero Visual Animation */
.hero-visual { position: absolute; bottom: 0; left: 0; width: 100%; height: 100px; z-index: 1; }
.music-wave {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200%;
    height: 300px;
    background: radial-gradient(circle, var(--accent-primary) 1px, transparent 1px);
    background-size: 10px 10px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(50%);
    opacity: 0;
    animation: wave-spread 8s ease-out infinite;
}
.music-wave:nth-child(2) { animation-delay: -2s; }
.music-wave:nth-child(3) { animation-delay: -4s; }
@keyframes wave-spread {
    0% { transform: translateX(-50%) translateY(50%) scale(0); opacity: 0.5; }
    100% { transform: translateX(-50%) translateY(50%) scale(1); opacity: 0; }
}

/* --- SECTION TITLE --- */
.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}
.section-title h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 1rem; }
.section-title p { font-size: 1.1rem; color: var(--text-secondary); }

/* --- FEATURES SECTION --- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.feature-icon {
    width: 50px; height: 50px; border-radius: 12px;
    background: var(--accent-primary);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}
.feature-icon i { font-size: 1.8rem; color: white; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-secondary); line-height: 1.6; }

/* ★ Sektion für Hörbeispiele ★ */
.samples {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.sample-players {
    display: grid;
    grid-template-columns: 1fr; /* Standardmäßig untereinander */
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.sample-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.sample-cover {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0; /* Verhindert, dass das Bild schrumpft */
}

.sample-info {
    width: 100%;
}

.sample-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.sample-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.sample-info audio {
    width: 100%;
    height: 40px;
}

/* Anpassung für den Audio-Player */
audio::-webkit-media-controls-panel {
    background-color: var(--bg-light);
}
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display,
audio::-webkit-media-controls-timeline,
audio::-webkit-media-controls-volume-slider,
audio::-webkit-media-controls-mute-button {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(300deg); /* Färbt die Steuerung in Akzentfarbe */
}

/* --- PRICING SECTION --- */
.pricing { background-color: var(--bg-light); }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: center; }
.price-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}
.price-card.popular { transform: scale(1.05); border-color: var(--accent-primary); }
.price-card h3 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); }
.price-card .price { font-size: 3rem; font-weight: 700; margin: 1.5rem 0; }
.price-card .credits-count { font-size: 1.2rem; font-weight: 500; margin-bottom: 2rem; color: var(--text-secondary); }
.price-card ul { list-style: none; margin-bottom: 2.5rem; }
.price-card ul li { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.price-card ul i { color: var(--accent-primary); }
.secondary-cta { background-color: var(--bg-light); color: var(--text-primary); border: 1px solid var(--border-color); }
.secondary-cta:hover { background-color: var(--text-primary); color: var(--bg-dark); }
.popular-badge {
    background: var(--accent-primary); color: white;
    padding: 0.3rem 0.8rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700;
    position: absolute; top: -15px; left: 50%;
    transform: translateX(-50%);
}
.price-card.popular { position: relative; }

/* --- FINAL CTA & FOOTER --- */
.final-cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.final-cta-content h2 { font-size: 2.8rem; }
.final-cta-content p { color: var(--text-secondary); font-size: 1.1rem; margin: 1rem auto 2rem auto; }
.landing-footer { background: var(--bg-light); padding: 3rem 0; text-align: center; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--text-secondary); }
.footer-copy { color: #777; font-size: 0.9rem; }

/* --- SCROLL ANIMATIONS --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 992px) {
    .features-grid, .pricing-cards { grid-template-columns: 1fr 1fr; }
    .footer-links {
        display: contents;
    }
}
@media (max-width: 768px) {
    .nav-links, .nav-login-btn { display: none; }
    .hero-content h1 { font-size: 3rem; }
    .features-grid, .pricing-cards { grid-template-columns: 1fr; }
    .price-card { margin-bottom: 2rem; }
    .price-card.popular { transform: scale(1); }
}

/* Cookie Consent Banner - Zentriertes cooles Design */
.cc-window {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    max-width: 500px !important;
    border-radius: 15px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    animation: slideInScale 0.5s ease-out !important;
    z-index: 9999 !important;
}

/* Animationen */
@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Message Text */
.cc-message {
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
    text-align: center !important;
}

/* Button Container */
.cc-compliance {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* Buttons */
.cc-btn {
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    min-width: 120px !important;
}

/* Akzeptieren Button */
.cc-allow {
    background: linear-gradient(45deg, #ff3366, #ff6b9d) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4) !important;
}

.cc-allow:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.6) !important;
}

/* Ablehnen Button */
.cc-deny {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.cc-deny:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Link */
.cc-link {
    color: #ff6b9d !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    margin-left: 10px !important;
    transition: color 0.3s ease !important;
}

.cc-link:hover {
    color: #ff3366 !important;
}

/* Overlay */
.cc-window::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 720px) {
    .cc-window {
        width: 95% !important;
        padding: 20px !important;
    }

    .cc-btn {
        width: 100% !important;
        margin: 5px 0 !important;
    }

    .cc-compliance {
        flex-direction: column !important;
    }
}

/* Kleinen Cookie-Einstellungs-Tab komplett ausblenden ★ */
.cc-revoke {
    display: none !important;
}