:root {
    --bg-color: #121212;
    --primary-text-color: #e0e0e0;
    --secondary-text-color: #b3b3b3;
    --accent-color: #E91E63;
    --card-bg-color: #1e1e1e;
    --border-color: #2a2a2a;
    --font-family: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--primary-text-color);
    font-family: var(--font-family);
    line-height: 1.6;
}

/* --- Header & Nav --- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

nav .nav-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-text-color);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

nav .nav-logo img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    max-width: 200px;
}

nav .nav-logo:hover img {
    transform: scale(1.1);
    filter: brightness(1.2) drop-shadow(0 4px 8px rgba(233, 30, 99, 0.3));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--primary-text-color);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

nav a:hover, nav a.nav-logo:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* --- General Section Styling --- */
main {
    padding-top: 80px; /* Header height */
}

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
}

section#gallery p {
    text-align: center;
    max-width: 600px;
    margin: -1rem auto 3rem auto;
    color: var(--secondary-text-color);
    font-size: 1.1rem;
}

section:last-of-type {
    border-bottom: none;
}

h1, h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-text-color);
}

/* --- Hero Section --- */
#hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    min-height: calc(100vh - 80px);
    padding: 2rem;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 25px var(--accent-color);
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    text-align: left;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-button {
    background: var(--accent-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

/* --- About Section --- */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-content img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
}

.personal-intro {
    flex: 1;
}

.personal-intro .greeting {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.personal-intro p {
    color: var(--secondary-text-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.personal-intro strong {
    color: var(--accent-color);
    font-weight: 600;
}

.personal-intro em {
    color: var(--primary-text-color);
    font-style: normal;
    font-weight: 500;
}

.discrete-text {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #999 !important;
    font-style: italic;
}

/* --- Laura's Personal Message Section --- */
.personal-message {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.03), rgba(30, 30, 30, 0.6));
    padding: 5rem 2rem !important;
    margin: 4rem auto !important;
    border-radius: 20px;
    border: 1px solid rgba(233, 30, 99, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    display: block !important;
}

#lauras-message {
    text-align: center !important;
    padding: 5rem 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
}

#lauras-message * {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

section#lauras-message {
    text-align: center !important;
    padding: 5rem 2rem !important;
    margin: 0 auto !important;
    max-width: 1400px !important;
    width: 100% !important;
}

.personal-message * {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.personal-message p,
.personal-message h2,
.personal-message h3,
.personal-message div,
.personal-message strong,
.personal-message em {
    text-align: center !important;
}

.personal-message .highlight,
.personal-message .fantasy-promise,
.personal-message .specialties,
.personal-message .no-limits,
.personal-message .final-tease,
.personal-message .call-to-action {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ULTIMATIVE ZENTRIERUNG FÜR LAURA'S SEKTION */
section#lauras-message,
section#lauras-message *,
section#lauras-message p,
section#lauras-message h2,
section#lauras-message h3,
section#lauras-message div,
section#lauras-message .personal-text,
section#lauras-message .highlight,
section#lauras-message .fantasy-promise,
section#lauras-message .specialties,
section#lauras-message .no-limits,
section#lauras-message .final-tease,
section#lauras-message .call-to-action {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

section#lauras-message .personal-text p,
section#lauras-message .highlight,
section#lauras-message .fantasy-promise,
section#lauras-message .specialties,
section#lauras-message .no-limits {
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.personal-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #c2185b, var(--accent-color));
    border-radius: 20px 20px 0 0;
}

.message-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
}

.personal-message h2 {
    text-align: center;
    color: var(--accent-color);
    font-size: 2.2rem;
    margin-bottom: 4rem;
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.phone-numbers {
    margin: 4rem 0;
    display: grid;
    gap: 2.5rem;
    text-align: center;
}

.phone-numbers h3 {
    color: var(--primary-text-color);
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
    text-align: center;
    font-weight: 500;
}

.phone-card {
    background: var(--card-bg-color);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 0;
    border: 1px solid rgba(233, 30, 99, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.phone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.4);
}

.phone-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.phone-number strong {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.phone-number .price {
    color: var(--secondary-text-color);
    font-size: 1.2rem;
    font-weight: 500;
    background: rgba(233, 30, 99, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.phone-card p {
    color: var(--primary-text-color);
    line-height: 1.7;
    font-size: 1.1rem;
}

.personal-text {
    margin: 4rem 0 !important;
    display: grid !important;
    gap: 2rem !important;
    text-align: center !important;
    width: 100% !important;
}

.personal-text p {
    margin: 0 auto !important;
    line-height: 1.8 !important;
    font-size: 1.15rem !important;
    padding: 1.5rem 0 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 800px !important;
}

.highlight {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(233, 30, 99, 0.03));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    position: relative;
    margin: 1rem auto;
    text-align: center;
    max-width: 800px;
}

.highlight::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: serif;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: serif;
}

.fantasy-promise {
    font-style: italic;
    text-align: center;
    font-size: 1.3rem !important;
    color: var(--primary-text-color) !important;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.06), rgba(30, 30, 30, 0.4));
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(233, 30, 99, 0.2);
    margin: 3rem auto !important;
    position: relative;
    overflow: hidden;
    max-width: 800px;
}

.fantasy-promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.services-tease {
    margin: 4rem 0;
    text-align: center;
}

.services-tease h3 {
    color: var(--accent-color);
    text-align: center;
    font-size: 1.8rem;
    margin: 0 0 3rem;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.service-item {
    background: rgba(233, 30, 99, 0.04);
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(233, 30, 99, 0.08);
    border-color: rgba(233, 30, 99, 0.2);
    transform: translateY(-3px);
}

.service-item p {
    margin: 0;
    text-align: center;
    color: var(--primary-text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.specialties {
    font-style: italic;
    color: var(--secondary-text-color) !important;
    text-align: center;
    margin: 3rem auto !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    padding: 2rem;
    background: rgba(30, 30, 30, 0.3);
    border-radius: 10px;
    max-width: 800px;
}

.no-limits {
    text-align: center;
    font-size: 1.3rem !important;
    color: var(--accent-color) !important;
    font-weight: 600;
    margin: 3rem auto !important;
    padding: 2rem;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(233, 30, 99, 0.15);
    max-width: 800px;
}

.final-tease {
    text-align: center;
    font-size: 1.2rem !important;
    margin: 2.5rem 0 !important;
    padding: 1.5rem;
}

.call-to-action {
    text-align: center;
    font-size: 1.25rem !important;
    color: var(--primary-text-color) !important;
    margin: 3rem 0 !important;
    padding: 2rem;
    font-weight: 500;
}

.final-call {
    background: linear-gradient(135deg, var(--accent-color), #c2185b);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.final-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.final-call p {
    color: white !important;
    font-size: 1.4rem !important;
    margin: 1rem 0 !important;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.waiting {
    font-style: italic;
    opacity: 0.95;
    font-size: 1.2rem !important;
}

.about-content p {
    flex: 1;
    color: var(--secondary-text-color);
    font-size: 1.1rem;
}

/* --- Card Styling (Services & Testimonials) --- */
.service-cards, .testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg-color);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Needed for new card design */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--secondary-text-color);
}

.card .price {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

#testimonials .card p {
    font-style: italic;
    margin-bottom: 1rem;
}

#testimonials .card span {
    font-weight: 600;
    color: var(--primary-text-color);
}

/* --- New Fantasy Card Styles --- */
.fantasy-cards .card {
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.fantasy-cards .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.fantasy-cards .card:hover img {
    transform: scale(1.05);
}

.fantasy-cards .card .card-content {
    padding: 1.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows footer to stick to bottom */
}

.fantasy-cards .card .card-content p {
    flex-grow: 1; /* Pushes price to the bottom */
}
/* --- End New Fantasy Card Styles --- */


/* --- Contact Section --- */
#contact {
    text-align: center;
}
#contact p {
    font-size: 1.2rem;
    color: var(--secondary-text-color);
    margin-bottom: 2rem;
}
.contact-info {
    display: inline-flex;
    align-items: center;
    background: var(--card-bg-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}
.contact-info i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}
.contact-info a {
    color: var(--primary-text-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}
.disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem !important;
    color: #888 !important;
}

/* --- Footer --- */
footer {
    background-color: #000;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: var(--secondary-text-color);
    font-size: 1.5rem;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* --- 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);
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    #hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content h1 {
        text-align: center;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    nav {
        flex-direction: column;
        gap: 1rem;
    }
    nav ul {
        gap: 1.5rem;
        padding-top: 10px;
    }

    main {
        padding-top: 120px; /* Adjusted for taller header */
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    .social-links {
        margin-top: 1rem;
    }

    /* Personal Message Mobile */
    .personal-message {
        padding: 3rem 1.5rem;
        margin: 2.5rem 0;
    }
    
    .personal-message h2 {
        font-size: 1.6rem;
        margin-bottom: 3rem;
        line-height: 1.4;
    }
    
    .phone-card {
        padding: 2rem 1.5rem;
    }
    
    .phone-number strong {
        font-size: 1.6rem;
    }
    
    .phone-number .price {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .final-call {
        padding: 2.5rem 1.5rem;
    }
    
    .final-call p {
        font-size: 1.2rem !important;
    }
    
    .highlight {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .fantasy-promise {
        padding: 2rem 1.5rem;
        font-size: 1.15rem !important;
    }
    
    .specialties {
        padding: 1.5rem;
        font-size: 1rem !important;
    }
    .social-links a {
        margin: 0 0.75rem;
    }
}

/* --- Gallery Page --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 15px var(--accent-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Lightbox Modal --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.5s;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.5s;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.8); }
    to { transform: translate(-50%, -50%) scale(1); }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.5rem 0;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.cookie-text h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-text p {
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--accent-color), #c2185b);
    color: white;
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #c2185b, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--secondary-text-color);
    border: 1px solid var(--border-color);
}

.cookie-btn.decline:hover {
    background: var(--card-bg-color);
    color: var(--primary-text-color);
    border-color: var(--accent-color);
}

.cookie-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #c2185b;
    text-decoration: underline;
}

/* Mobile Optimierung für Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        min-width: 120px;
    }
}

/* === HÖRGESCHICHTEN STYLES === */

/* Audio Grid Layout */
.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Audio Item Layout */
.audio-item {
    display: flex;
    flex-direction: column;
    background: var(--card-bg-color);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.audio-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.audio-description {
    color: var(--secondary-text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

/* Gradient Text für Titel - nur in der Audio-Sektion */
.audio-stories-section .gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff9ff3, #54a0ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-animation 3s ease infinite;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Story Titel Styling - nur in der Audio-Sektion */
.audio-stories-section .story-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: transform 0.3s ease;
}

.audio-stories-section .story-title:hover {
    transform: scale(1.05);
}

/* Audio Item Verbesserungen - nur in der Audio-Sektion */
.audio-stories-section .audio-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.audio-stories-section .audio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border-color: rgba(255,107,107,0.5);
}

/* Audio Cover Verbesserungen - nur in der Audio-Sektion */
.audio-stories-section .audio-cover {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Individuelle Cover-Designs */
.cover-kerze {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.cover-anal {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.cover-weiter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cover-sm {
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
}

.cover-verführung {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 50%, #ff8a80 100%);
}

.cover-nacht {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Cover Content */
.cover-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.cover-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cover-text {
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: block;
}

.audio-stories-section .audio-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,107,107,0.6), rgba(238,90,36,0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.audio-stories-section .audio-item:hover .audio-cover::before {
    opacity: 1;
}

.audio-stories-section .audio-cover i.fas.fa-play-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.audio-stories-section .audio-item:hover .audio-cover i.fas.fa-play-circle {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.audio-stories-section .audio-item:hover .cover-content {
    opacity: 0.3;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

/* Play Button Verbesserungen - nur in der Audio-Sektion */
.audio-stories-section .play-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
    position: relative;
    overflow: hidden;
}

.audio-stories-section .play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.audio-stories-section .play-btn:hover::before {
    left: 100%;
}

.audio-stories-section .play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.6);
    background: linear-gradient(45deg, #ff5252, #e53e3e);
}

.audio-stories-section .play-btn:active {
    transform: translateY(0);
}

/* Audio Meta Styling - nur in der Audio-Sektion */
.audio-stories-section .audio-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.audio-meta span {
    background: rgba(255,107,107,0.2);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,107,107,0.3);
    backdrop-filter: blur(5px);
}

.duration {
    color: #54a0ff;
}

.rating {
    color: #ff6b6b;
}

/* Section Title Styling */
.audio-stories-section h1 {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff9ff3);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-animation 3s ease infinite;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.audio-stories-section h2 {
    background: linear-gradient(45deg, #ff9ff3, #54a0ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-animation 3s ease infinite;
    text-align: center;
    margin-bottom: 1rem;
}

/* Responsive Design für Hörgeschichten */
@media (max-width: 768px) {
    .audio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .audio-stories-section .audio-cover {
        height: 140px;
    }
    
    .story-title {
        font-size: 1.5rem;
    }
    
    .audio-stories-section h1 {
        font-size: 2rem;
    }
    
    .audio-cover i.fas.fa-play-circle {
        font-size: 3rem;
    }
}

/* Audio Player Modal Verbesserungen */
.audio-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.audio-modal-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    padding: 2rem;
    margin: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.audio-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.audio-close:hover {
    color: #ff6b6b;
}

.audio-player {
    text-align: center;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

#play-pause-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

#play-pause-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255,107,107,0.5);
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.progress {
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 4px;
    width: 0%;
    transition: width 0.1s ease;
}

.time {
    color: #fff;
    font-size: 0.9rem;
    min-width: 100px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-control i {
    color: #fff;
}

#volume-slider {
    width: 80px;
}

#audio-title {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-animation 3s ease infinite;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}