:root {
    --bg-color: #080808;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #222222;
    --accent-hover: #333333;
    --font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.header {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-top: 15px;
}

/* Language Flags */
.lang-flags {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.lang-flags span {
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-flags span:hover {
    opacity: 0.8 !important;
    transform: scale(1.1);
}

/* App Coming Soon Banner Removed */

.not-text {
    font-size: 0.55em;
    opacity: 0.5;
    vertical-align: middle;
    position: relative;
    top: -0.05em;
    padding: 0 0.1em;
}

/* Recommendations Section */
.recommendations {
    padding: 2rem 0 4rem 0; /* Reduced top padding */
    border-top: 1px solid #333;
    margin-top: 1rem; /* Closer to the element above */
    text-align: left;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: -1px;
}

.rec-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.rec-card {
    flex: 1;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rec-image-wrapper {
    width: 100%;
    padding-top: 125%; /* Bulletproof 4:5 Aspect Ratio (5/4 = 1.25) */
    position: relative;
    background-color: #0a0a0a;
}

.rec-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* Garantiert, dass die exakte Bildmitte fokussiert wird */
}

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

.rec-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.rec-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.rec-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.2s ease;
}

.rec-btn:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

.affiliate-disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.6;
    text-align: center;
    margin-top: 3rem;
    line-height: 1.4;
}

/* Legal Section */
/* Hero Section */
.hero {
    flex: 1;
    text-align: center;
    padding: 3rem 0; /* Horizontal padding moved to container */
}

.hero-image {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    object-position: center center; /* Fokussiert genau die Mitte des Bildes */
    display: block;
    margin: 2rem 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto; /* Zentriert und löscht den riesigen margin-bottom */
    background-color: var(--text-primary);
    color: var(--bg-color);
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Features (Accordion Cards) */
.features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 3rem; /* Space before the button */
}

.feature-accordion {
    flex: 1;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feat-image-wrapper {
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    background-color: #222;
}

.feat-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.feat-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
}

/* All Text White */
.feature-accordion summary h3, .feature-accordion .accordion-content p, .feature-accordion .icon {
    color: var(--text-primary);
}

.feature-accordion:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.feature-accordion summary {
    cursor: pointer;
    list-style: none; /* Hide default arrow */
}
.feature-accordion summary::-webkit-details-marker {
    display: none;
}

.feature-accordion summary h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.feature-accordion .icon {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.accordion-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: none;
}

.accordion-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feat-list {
    margin-top: 1rem;
    padding-left: 1.2rem;
    list-style-type: none;
}

.feat-list li {
    color: var(--text-primary); /* Changed to white */
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    position: relative;
}

.feat-list li::before {
    content: "▪";
    color: #FFFF00; /* Neon yellow bullet point */
    position: absolute;
    left: -1.2rem;
    top: 0;
}

/* Price Info underneath CTA */
.price-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 8px; /* 8px Abstand zum Button */
    margin-bottom: 3rem; /* Abstand nach unten zur Linie wiederherstellen */
    line-height: 1;
    display: block;
    text-align: center;
    opacity: 0.8;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-top: 1px solid var(--accent);
}

.legal-links {
    margin-top: 1rem;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--text-primary);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding-top: 2rem;
    }
    
    .logo {
        margin-top: 0;
        text-align: center;
    }

    .hero-image {
        max-height: 250px; /* Forces crop on mobile */
    }

    .subtitle {
        font-size: 0.9rem;
        margin-left: 5%;
        margin-right: 5%;
    }

    .lang-flags {
        justify-content: center;
    }

    .spacer {
        display: none; /* Hide spacer on mobile as layout is centered */
    }

    .features {
        flex-direction: column; /* Stack features on mobile to prevent squeezing */
        gap: 0.8rem; /* Closer together on mobile */
        padding-left: 2rem; /* Mehr Abstand zum Rand auf Mobile */
        padding-right: 2rem;
    }

    .rec-cards {
        flex-direction: column;
        gap: 2rem;
        padding-left: 2.5rem; /* Shrinks the cards proportionally on mobile */
        padding-right: 2.5rem;
    }
}
