/* Google Fonts - Nunito */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&display=swap');

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

:root {
    --primary-color: #1a4b8c;
    --secondary-color: #2d6bb5;
    --accent-color: #f5a623;
    --text-color: #333;
    --text-muted: #666;
    --text-light: #888;
    --bg-light: #f9f9f9;
    --white: #fff;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation - Blauer Hintergrund für weißes Logo */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    background: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #f5a623;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
}

.navbar .nav-links a {
    color: rgba(255,255,255,0.9);
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active {
    color: white;
}

.navbar .nav-toggle-label span,
.navbar .nav-toggle-label span::before,
.navbar .nav-toggle-label span::after {
    background: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.btn-kaufen {
    background-color: var(--accent-color);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    color: var(--text-color) !important;
    font-weight: 700 !important;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s !important;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
    border: 2px solid #e6ac00;
}

.btn-kaufen:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.5);
    background-color: #ffcd39;
}

.btn-spielen {
    background-color: var(--secondary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    color: #fff !important;
    font-weight: 700 !important;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s !important;
    box-shadow: 0 2px 8px rgba(26, 75, 140, 0.3);
}

.btn-spielen:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 75, 140, 0.4);
    background-color: var(--primary-color);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--primary-color);
    height: 3px;
    width: 28px;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    top: -8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 4rem 5%;
    background: linear-gradient(180deg, #2563a8 0%, var(--primary-color) 15%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Dekorativer Smiley im Hero */
.hero::before {
    content: '';
    position: absolute;
    top: -30px;
    right: 8%;
    width: 180px;
    height: 180px;
    background: url('../images/smiley-deco.svg') no-repeat center;
    background-size: contain;
    opacity: 0.4;
    transform: rotate(15deg);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 5%;
    width: 120px;
    height: 120px;
    background: url('../images/smiley-deco.svg') no-repeat center;
    background-size: contain;
    opacity: 0.3;
    transform: rotate(-20deg);
    pointer-events: none;
}

/* Hero-Deko auf Mobile anpassen */
@media (max-width: 768px) {
    .hero::before {
        width: 100px;
        height: 100px;
        top: -20px;
        right: -10px;
        opacity: 0.25;
    }

    .hero::after {
        width: 70px;
        height: 70px;
        bottom: -20px;
        opacity: 0.2;
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.hero-slogan {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.hero-audience {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    flex: 0 0 auto;
}

.hero-image img {
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Hero Image Slider (Crossfade) */
.hero-slider {
    position: relative;
    max-width: 400px;
}

.hero-slider picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: heroFadeHome 10s infinite;
}

.hero-slider picture:first-child {
    position: relative;
}

.hero-slider picture:nth-child(2) {
    animation-delay: 5s;
}

.hero-slider picture img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@keyframes heroFadeHome {
    0%, 45% { opacity: 1; }
    50%, 95% { opacity: 0; }
    100% { opacity: 1; }
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Produkt Section */
.produkt {
    padding: 4rem 5%;
    text-align: center;
}

.produkt h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.produkt-proof {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Spielinfo Badges */
.spiel-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.info-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 120px;
}

.info-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.info-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.produkt-bilder {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.produkt-bild {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.produkt-bild img {
    max-width: 300px;
    height: auto;
    border-radius: 5px;
}

.produkt-bild.packshot img {
    max-width: 500px;
}

/* Preis Box */
.preis-box {
    margin: 2rem 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.preis {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.preis-info {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    background-color: var(--primary-color);
    color: var(--white);
}

/* Mehr erfahren Links */
.mehr-erfahren-link {
    display: block;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.mehr-erfahren-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Eignung Section */
.eignung-section {
    padding: 4rem 5%;
    background: var(--white);
    text-align: center;
}

.eignung-section h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.eignung-box {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
}

.eignung-box h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.eignung-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eignung-box li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.eignung-ja {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
}

.eignung-ja h3 {
    color: #16a34a;
}

.eignung-ja li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.eignung-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #38bdf8;
}

.eignung-info h3 {
    color: #0284c7;
}

.eignung-info li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0284c7;
    font-weight: bold;
}

.eignung-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Trust Section */
.trust-section {
    background: var(--primary-color);
    padding: 3rem 5%;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--white);
    min-width: 150px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}

.trust-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trust-desc {
    font-size: 0.85rem;
    opacity: 0.85;
}

@media (max-width: 600px) {
    .trust-badges {
        gap: 2rem;
    }

    .trust-badge {
        min-width: 120px;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
    }
}

/* Spielregeln Section */
.spielregeln {
    padding: 3rem 5%;
    text-align: center;
}

.spielregeln h1,
.spielregeln h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.regeln-bilder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.regel-bild {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 800px;
    width: 100%;
}

.regel-bild img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Regel-Karten (Spielkarten-Proportionen ~5:7) */
.regel-karten {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.regel-karte {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #e0e0e0;
    width: 200px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.regel-karte:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.regel-karte-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.5rem;
    padding-top: 0.5rem;
    display: block;
    color: var(--primary-color);
}

.regel-karte h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.regel-karte p {
    margin-bottom: 0.4rem;
    line-height: 1.5;
    font-size: 0.85rem;
    flex-grow: 1;
}

.regel-karte .beispiel {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
    margin-top: auto;
    padding-top: 0.5rem;
}

.regel-karte ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    text-align: left;
    flex-grow: 1;
}

.regel-karte li {
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    line-height: 1.4;
}

.regeln-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Klassisches Mau-Mau Section */
.klassisches-maumau {
    padding: 3rem 5% 4rem;
    text-align: center;
    background: var(--bg-light);
    border-top: 1px solid #e0e0e0;
}

.klassisches-maumau h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.klassisches-maumau .intro-text {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.vergleich-box {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    max-width: 600px;
    margin: 2rem auto 0;
}

.vergleich-box h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.vergleich-box p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* Spielregeln Hero */
.spielregeln-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2.5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.spielregeln-hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.spielregeln-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.spielregeln-hero-image img {
    max-width: 180px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
    .spielregeln-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 5%;
    }
    .spielregeln-hero-content h1 {
        font-size: 1.75rem;
    }
    .spielregeln-hero-image img {
        max-width: 140px;
    }
}

/* Section Title */
.section-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Matching Beispiel */
.matching-beispiel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    perspective: 1000px;
}

.matching-karte {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    min-width: 110px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 75, 140, 0.15);
}

.matching-karte:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 12px 30px rgba(26, 75, 140, 0.25);
}

/* Shine-Effekt - nur einmal beim Laden */
.matching-karte::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    animation: cardShine 1.5s ease-out forwards;
    animation-delay: var(--shine-delay, 0s);
}

@keyframes cardShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.matching-karte-left {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d6bb5 100%);
    color: var(--white);
    border-color: var(--primary-color);
    --shine-delay: 0s;
}

.matching-wort {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

.matching-details {
    font-size: 0.8rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.matching-pfeil {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.matching-optionen {
    display: flex;
    gap: 1rem;
}

.matching-passt {
    border-color: #27ae60;
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
    --shine-delay: 1s;
}

.matching-passt:nth-child(2) {
    --shine-delay: 2s;
}

.matching-grund {
    display: inline-block;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
    margin-top: 0.5rem;
    background: #27ae60;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 500px) {
    .matching-beispiel {
        flex-direction: column;
        gap: 1rem;
    }
    .matching-pfeil {
        transform: rotate(90deg);
    }
    .matching-optionen {
        flex-direction: row;
    }
    .matching-karte {
        min-width: 90px;
        padding: 1rem 1.25rem;
    }
}

/* Mau-Mau Spielkarten Visual */
.spielkarte {
    background: var(--white);
    border: 2px solid #333;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spielkarte:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Shine-Effekt für Spielkarten - nur einmal beim Laden */
.spielkarte::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    animation: cardShine 1.5s ease-out forwards;
    animation-delay: var(--shine-delay, 0s);
}

.spielkarte-left {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-color: #444;
    --shine-delay: 0s;
}

.spielkarte-left .karte-wert {
    color: var(--white);
}

.spielkarte-match {
    border-color: #27ae60;
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
    --shine-delay: 1s;
}

.spielkarte-match:nth-child(2) {
    --shine-delay: 2s;
}

.karte-symbol {
    font-size: 1.75rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.karte-symbol.herz,
.karte-symbol.karo {
    color: #e74c3c;
}

.karte-symbol.pik,
.karte-symbol.kreuz {
    color: #2c3e50;
}

.karte-wert {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    position: relative;
    z-index: 1;
}

.spielkarte .matching-grund {
    font-size: 0.7rem;
    background: #27ae60;
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

/* Spielvarianten */
.spielvarianten {
    padding: 3rem 5%;
    background: var(--white);
}

.spielvarianten h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.variante {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.variante h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.variante p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.variante a {
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 3rem 5%;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.faq-liste {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-item summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: bold;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 1.25rem 1rem;
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.faq-item a {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .regel-karten {
        gap: 1rem;
    }

    .regel-karte {
        width: 180px;
        min-height: 250px;
        padding: 1rem;
    }

    .regel-karte-icon {
        width: 40px;
        height: 40px;
    }

    .regel-karte h3 {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .regel-karten {
        flex-direction: column;
        gap: 1rem;
    }

    .regel-karte {
        width: 100%;
        min-height: auto;
        padding: 1rem;
    }

    .regel-karte-icon {
        width: 36px;
        height: 36px;
    }

    .regel-karte h3 {
        font-size: 0.95rem;
    }

    .regel-karte p,
    .regel-karte li {
        font-size: 0.8rem;
    }
}

/* Sticky Footer */
html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

body > main {
    flex: 1 0 auto;
}

/* Footer */
footer {
    flex-shrink: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 5% 1rem;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.footer-content p {
    margin: 0.25rem 0;
    line-height: 1.6;
}

.footer-content a {
    color: var(--white);
}

.footer-content a:hover {
    color: var(--accent-color);
}

.footer-zielgruppen {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-zielgruppen a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-zielgruppen a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.85);
    margin: 0.25rem 0;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.9);
    margin: 0 0.5rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-color);
}

/* 404 Error Page */
.error-page {
    text-align: center;
    padding: 5rem 5%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error-page h1 {
    font-size: 8rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.error-page p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* Slider */
.slider {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.slider input[type="radio"] {
    display: none;
}

.slides {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background: var(--white);
    position: relative;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--white);
}

#slide1:checked ~ .slides .slide:nth-child(1),
#slide2:checked ~ .slides .slide:nth-child(2),
#slide3:checked ~ .slides .slide:nth-child(3) {
    display: block;
}

/* Pfeile */
.slide {
    position: relative;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s, background 0.3s;
    z-index: 10;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

.arrow::before {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.arrow-left::before {
    content: '\2039';
    padding-right: 2px;
}

.arrow-right::before {
    content: '\203A';
    padding-left: 2px;
}

.arrow:hover {
    transform: translateY(-100%) scale(1.1);
    background: var(--white);
}

/* Swipe-Hinweis */
.swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: fadeInOut 3s ease-in-out;
}

.swipe-icon {
    font-size: 1.2rem;
    animation: swipeMotion 1.5s ease-in-out infinite;
}

@keyframes swipeMotion {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0.5; }
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.slider-nav label {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.slider-nav label:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

#slide1:checked ~ .slider-nav label:nth-child(1),
#slide2:checked ~ .slider-nav label:nth-child(2),
#slide3:checked ~ .slider-nav label:nth-child(3) {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        max-width: 100%;
    }
}

/* Zielgruppen-Intro */
.zielgruppen-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 2rem 5% 0;
    line-height: 1.6;
}

.zielgruppen-intro strong {
    color: var(--primary-color);
}

/* Zielgruppen-Sections (Hormozi Style) */
.zielgruppe {
    padding: 4rem 5%;
    text-align: center;
}

.zielgruppe h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.section-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Alternierende Hintergründe */
.zielgruppe-kinder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.zielgruppe-kinder h2 {
    color: var(--white);
}

.zielgruppe-familien {
    background: var(--white);
}

.zielgruppe-familien h2 {
    color: var(--primary-color);
}

.zielgruppe-familien .section-tag {
    background: var(--primary-color);
    color: var(--white);
}

.zielgruppe-therapeuten {
    background: var(--bg-light);
}

.zielgruppe-therapeuten h2 {
    color: var(--primary-color);
}

.zielgruppe-therapeuten .section-tag {
    background: var(--primary-color);
    color: var(--white);
}

.zielgruppe-schulen {
    background: var(--white);
}

.zielgruppe-schulen h2 {
    color: var(--primary-color);
}

.zielgruppe-schulen .section-tag {
    background: var(--primary-color);
    color: var(--white);
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.benefit {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto 0.75rem;
}

/* Icons in Kinder-Section weiß */
.zielgruppe-kinder .benefit-icon {
    filter: brightness(0) invert(1);
}

/* Icons in anderen Sections blau */
.zielgruppe-familien .benefit-icon,
.zielgruppe-therapeuten .benefit-icon,
.zielgruppe-schulen .benefit-icon {
    filter: invert(22%) sepia(93%) saturate(747%) hue-rotate(186deg) brightness(91%) contrast(91%);
}

/* Tag Icons */
.tag-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.zielgruppe-kinder .tag-icon {
    filter: brightness(0) invert(1);
}

.zielgruppe-familien .tag-icon,
.zielgruppe-therapeuten .tag-icon,
.zielgruppe-schulen .tag-icon {
    filter: brightness(0) invert(1);
}

.benefit p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Problems List (Familien) */
.problems-list {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.problem-item {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    text-align: left;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-color);
}

/* Solution Box */
.solution-box {
    background: #f0fff4;
    border: 2px solid #27ae60;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.solution-box h3 {
    color: #27ae60;
    margin-bottom: 0.75rem;
}

.solution-box p {
    margin: 0;
    color: var(--text-color);
}

/* Social Proof */
.social-proof {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.zielgruppe-kinder .social-proof {
    color: rgba(255,255,255,0.85);
}

/* Large CTA Button */
.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================================
   Dekorative Spielkarten-Elemente
   ======================================== */

/* Für Kinder: +2 Symbol (Dynamik & Spaß) */
.zielgruppe-kinder {
    position: relative;
    overflow: hidden;
}

.zielgruppe-kinder::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 5%;
    width: 140px;
    height: 140px;
    background: url('../images/deco-plus2.svg') no-repeat center;
    background-size: contain;
    opacity: 0.32;
    transform: rotate(12deg);
    pointer-events: none;
}

.zielgruppe-kinder::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 3%;
    width: 100px;
    height: 100px;
    background: url('../images/smiley-deco.svg') no-repeat center;
    background-size: contain;
    opacity: 0.28;
    transform: rotate(-15deg);
    pointer-events: none;
}

/* Für Familien: Richtungswechsel (Wendung zum Positiven) */
.zielgruppe-familien {
    position: relative;
    overflow: hidden;
}

.zielgruppe-familien::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 4%;
    width: 120px;
    height: 120px;
    background: url('../images/deco-reverse.svg') no-repeat center;
    background-size: contain;
    opacity: 0.28;
    transform: rotate(-10deg);
    pointer-events: none;
}

/* Für Therapeuten: Aussetzen (Pause vom Frust) */
.zielgruppe-therapeuten {
    position: relative;
    overflow: hidden;
}

.zielgruppe-therapeuten::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 6%;
    width: 110px;
    height: 110px;
    background: url('../images/deco-skip.svg') no-repeat center;
    background-size: contain;
    opacity: 0.28;
    transform: rotate(8deg);
    pointer-events: none;
}

/* Für Schulen: +2 Symbol (Lernerfolg) */
.zielgruppe-schulen {
    position: relative;
    overflow: hidden;
}

.zielgruppe-schulen::before {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 5%;
    width: 100px;
    height: 100px;
    background: url('../images/deco-plus2.svg') no-repeat center;
    background-size: contain;
    opacity: 0.25;
    transform: rotate(-5deg);
    pointer-events: none;
}

/* Deko auf Mobile kleiner */
@media (max-width: 768px) {
    .zielgruppe-kinder::before,
    .zielgruppe-familien::before,
    .zielgruppe-therapeuten::before,
    .zielgruppe-schulen::before {
        width: 80px;
        height: 80px;
        opacity: 0.2;
    }

    .zielgruppe-kinder::after {
        width: 60px;
        height: 60px;
        opacity: 0.22;
    }
}

@media (max-width: 600px) {
    .zielgruppe {
        padding: 3rem 5%;
    }

    .zielgruppe h2 {
        font-size: 1.5rem;
    }

    .benefit {
        min-width: 100%;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .nav-toggle-label {
        display: block;
        order: 1;
    }

    .logo {
        order: 0;
        flex: 1;
    }

    .nav-links {
        order: 2;
        flex-basis: 100%;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .nav-links li:last-child {
        padding: 1rem 0;
    }

    .nav-links .btn-kaufen {
        display: inline-block;
        padding: 0.6rem 2rem;
    }

    .nav-toggle:checked ~ .nav-links {
        max-height: 300px;
    }

    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-slogan {
        font-size: 1.2rem;
    }

    .hero-audience {
        display: none;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .hero-text .mobile-hide {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .produkt-bild img {
        max-width: 100%;
    }

    .spiel-info {
        gap: 1rem;
    }

    .info-badge {
        min-width: 100px;
        padding: 0.75rem 1rem;
    }
}

/* Blog Teaser Section */
.blog-teaser-section {
    padding: 3rem 5%;
    background: var(--white);
    text-align: center;
}

.blog-teaser-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.blog-teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 1.5rem;
}

.blog-teaser-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #eee;
}

.blog-teaser-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-teaser-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.blog-teaser-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.blog-teaser-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.blog-teaser-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.blog-teaser-link:hover {
    text-decoration: underline;
}

/* ============================================
   CARD SHOWCASE - Interactive Carousel + Flip
   ============================================ */

.card-showcase {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    text-align: center;
}

.card-showcase h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.card-showcase .section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Carousel Container */
.card-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto 2rem;
    overflow: hidden;
    padding: 1rem 0;
}

.card-carousel-track {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 2rem;
    cursor: grab;
    user-select: none;
}

.card-carousel-track:active {
    cursor: grabbing;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.carousel-nav.prev { left: 0; }
.carousel-nav.next { right: 0; }

.carousel-nav svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
}

/* Single Card - 3D Flip */
.wm-card {
    flex-shrink: 0;
    width: 140px;
    height: 200px;
    perspective: 1000px;
    cursor: pointer;
}

.wm-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wm-card.flipped .wm-card-inner {
    transform: rotateY(180deg);
}

.wm-card-front,
.wm-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Card Front - Word Side */
.wm-card-front {
    background: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wm-card-header,
.wm-card-footer {
    height: 28px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.wm-card-header {
    justify-content: space-between;
    border-radius: 12px 12px 0 0;
}

.wm-card-footer {
    justify-content: space-between;
    flex-direction: row-reverse;
    border-radius: 0 0 12px 12px;
}

/* All cards have yellow bars (brand color, slightly lighter) */
.wm-card-header,
.wm-card-footer {
    background: #f7b84d; /* Lighter yellow from branding */
}

.wm-card-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.wm-card-word {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    line-height: 1.2;
}

.vokal-symbol {
    display: none; /* Hidden - not needed */
}

/* Joker Card */
.wm-card-joker .joker-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.wm-card-joker .joker-smiley {
    font-size: 2.5rem;
    line-height: 1;
}

.wm-card-joker .joker-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1em;
}

/* Card Back - Logo Side */
.wm-card-back {
    background: var(--primary-color);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
}

.wm-card-back-logo {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.wm-card-back-logo span {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Hint Text */
.card-showcase-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.card-showcase-hint strong {
    color: var(--primary-color);
}

/* Explanation Box */
.card-explanation {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card-explanation p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

.card-explanation strong {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .card-showcase {
        padding: 3rem 3%;
    }

    .wm-card {
        width: 120px;
        height: 170px;
    }

    .wm-card-word {
        font-size: 1.2rem;
    }

    .wm-card-header,
    .wm-card-footer {
        height: 24px;
        font-size: 0.6rem;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .card-carousel-track {
        gap: 1rem;
        padding: 1rem;
    }

    .wm-card {
        width: 100px;
        height: 145px;
    }

    .wm-card-word {
        font-size: 1rem;
    }

    .carousel-nav {
        display: none;
    }
}
