/* ========================================
   FROG DATE - Soft Fairy Tale Styles
   ======================================== */

:root {
    /* Colors - Soft Fairy Tale Palette */
    --pink-light: #fdf2f8;
    --pink-soft: #fce7f3;
    --pink-medium: #f9a8d4;
    --pink-accent: #ec4899;
    --pink-dark: #db2777;

    --purple-light: #eef2ff;
    --purple-soft: #e0e7ff;
    --purple-medium: #818cf8;
    --purple-accent: #4f46e5;
    --forest-green: #1d4d3e;
    --emerald: #059669;

    --gold: #f59e0b;
    --gold-light: #fef3c7;

    --text-dark: #1e3a5f;
    --text-medium: #4b5563;
    --text-light: #6b7280;

    --white: #fffdf8;
    --cream: #fef9f0;
    --gold-cream: #fdf6e9;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Quicksand', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px 20px;
    --container-max: 1100px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-dark);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    color: var(--purple-accent);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1em;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-medium);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 242, 248, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 70, 239, 0.15);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--purple-accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-frog {
    width: 50px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

/* Nav Language Dropdown */
.nav-lang-dropdown {
    position: relative;
}

.nav-lang-toggle {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-lang-toggle:hover {
    color: var(--pink-accent);
}

.nav-lang-toggle .toggle-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-lang-dropdown.open .toggle-arrow {
    transform: rotate(180deg);
}

.nav-flags {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(236, 72, 153, 0.2);
    z-index: 100;
    min-width: 180px;
    flex-direction: column;
    gap: 2px;
}

.nav-lang-dropdown.open .nav-flags {
    display: flex;
}

.nav-flag {
    background: none;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    color: var(--text-dark);
}

.nav-flag .flag-label {
    font-size: 0.9rem;
}

.nav-flag:hover {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
}

.nav-flag.active {
    background: rgba(236, 72, 153, 0.15);
    border-color: var(--pink-accent);
}

.nav-cta {
    background: #f9a8d4;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    border: 3px solid #a855f7;
    box-shadow: 0 4px 15px rgba(249, 168, 212, 0.3);
}

.nav-cta:hover {
    opacity: 0.9;
    color: var(--white) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: url('images/bg-main.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 25px;
    background: linear-gradient(
        90deg,
        var(--pink-accent) 0%,
        #f472b6 20%,
        var(--purple-accent) 40%,
        var(--pink-accent) 60%,
        #f472b6 80%,
        var(--pink-accent) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: taglineShimmer 4s linear infinite;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    animation: twinkle 1.5s ease-in-out infinite;
    -webkit-text-fill-color: initial;
}

.hero-tagline::before {
    left: -35px;
    animation-delay: 0s;
}

.hero-tagline::after {
    right: -35px;
    animation-delay: 0.75s;
}

@keyframes taglineShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(0.8); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

.magic-text {
    background: linear-gradient(135deg, var(--pink-accent), var(--purple-accent), var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin: 30px 0 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f9a8d4;
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(249, 168, 212, 0.4);
    border: 3px solid #a855f7;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

.button-sparkle {
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-limited,
.download-limited {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--purple-medium);
    font-style: italic;
    letter-spacing: 0.02em;
}

.hero-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-illustration {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.hero-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Section Containers */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-padding);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
}

/* What Section */
.what-section {
    background: var(--gold-cream);
}

.what-section h2 {
    text-align: center;
}

.what-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.lilypad-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.lilypad {
    background: linear-gradient(145deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
    padding: 45px 35px;
    text-align: center;
    width: 200px;
    flex-shrink: 0;
    box-shadow:
        0 8px 25px rgba(76, 175, 80, 0.15),
        inset 0 2px 10px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    position: relative;
}

.lilypad::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 20%;
    height: 15%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(3px);
}

.lilypad:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow:
        0 15px 35px rgba(76, 175, 80, 0.25),
        inset 0 2px 10px rgba(255, 255, 255, 0.5);
}

.lilypad-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 15px;
}

.lilypad h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #2e7d32;
    margin-bottom: 8px;
}

.lilypad p {
    font-size: 0.9rem;
    color: #1b5e20;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .lilypad {
        width: 180px;
        padding: 35px 25px;
    }
}

@media (max-width: 500px) {
    .lilypad {
        width: 160px;
        padding: 30px 20px;
    }
}

/* Frogs Section */
.frogs-section {
    background: linear-gradient(180deg, var(--purple-light) 0%, var(--pink-light) 100%);
}

.frogs-section h2 {
    text-align: center;
}

.frogs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.frogs-grid .frog-card {
    flex: 0 1 300px;
    max-width: 320px;
}

/* Floating animation for cards */
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(var(--card-rotation, 0deg)); }
    50% { transform: translateY(-8px) rotate(var(--card-rotation, 0deg)); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.frog-card {
    background: linear-gradient(145deg, #fffef9 0%, var(--gold-cream) 50%, #fff9f0 100%);
    border-radius: 30px;
    padding: 35px 25px 40px;
    text-align: center;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: gentleFloat 4s ease-in-out infinite;
    border: 3px solid transparent;
    background-clip: padding-box;
}

/* Ornate border effect */
.frog-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 32px;
    padding: 3px;
    background: linear-gradient(135deg, var(--card-color-1) 0%, var(--card-color-2) 50%, var(--card-color-1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

/* Shimmer overlay */
.frog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Different float timings for each card */
.frog-card:nth-child(1) { --card-rotation: -1.5deg; animation-delay: 0s; }
.frog-card:nth-child(2) { --card-rotation: 1deg; animation-delay: 0.5s; }
.frog-card:nth-child(3) { --card-rotation: -0.5deg; animation-delay: 1s; }
.frog-card:nth-child(4) { --card-rotation: 1.5deg; animation-delay: 1.5s; }
.frog-card:nth-child(5) { --card-rotation: -1deg; animation-delay: 0.8s; }

.frog-card:hover {
    transform: translateY(-15px) rotate(0deg) scale(1.05);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 40px var(--card-glow);
    animation-play-state: paused;
}

.frog-card:hover::before {
    opacity: 1;
}

.frog-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.frog-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}

.frog-card:hover .frog-image {
    transform: scale(1.2) translateY(-10px);
}

.frog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
}

.frog-title {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.frog-desc {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.6;
    font-style: italic;
}

/* Frog cards as links */
a.frog-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Frog Card Colors - Each frog gets their signature magic */
.glacien {
    --card-color-1: #93c5fd;
    --card-color-2: #dbeafe;
    --card-glow: rgba(96, 165, 250, 0.3);
}
.glacien:hover .frog-image {
    filter: drop-shadow(0 0 30px rgba(96, 165, 250, 0.6));
}
.glacien:hover h3 { color: #2563eb; text-shadow: 0 0 20px rgba(96, 165, 250, 0.4); }

.phexter {
    --card-color-1: #9ca3af;
    --card-color-2: #e5e7eb;
    --card-glow: rgba(107, 114, 128, 0.3);
}
.phexter:hover .frog-image {
    filter: drop-shadow(0 0 30px rgba(107, 114, 128, 0.5));
}
.phexter:hover h3 { color: #374151; text-shadow: 0 0 20px rgba(107, 114, 128, 0.3); }

.lupinolux {
    --card-color-1: #c4b5fd;
    --card-color-2: #a78bfa;
    --card-glow: rgba(167, 139, 250, 0.4);
}
.lupinolux:hover .frog-image {
    filter: drop-shadow(0 0 35px rgba(167, 139, 250, 0.7));
}
.lupinolux:hover h3 { color: #6d28d9; text-shadow: 0 0 20px rgba(167, 139, 250, 0.5); }

.sir-applause {
    --card-color-1: #6ee7b7;
    --card-color-2: #a7f3d0;
    --card-glow: rgba(52, 211, 153, 0.3);
}
.sir-applause:hover .frog-image {
    filter: drop-shadow(0 0 30px rgba(52, 211, 153, 0.6));
}
.sir-applause:hover h3 { color: #047857; text-shadow: 0 0 20px rgba(52, 211, 153, 0.4); }

.alturio {
    --card-color-1: #fcd34d;
    --card-color-2: #fde68a;
    --card-glow: rgba(251, 191, 36, 0.4);
}
.alturio:hover .frog-image {
    filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.6));
}
.alturio:hover h3 { color: #b45309; text-shadow: 0 0 20px rgba(251, 191, 36, 0.4); }

/* More Frogs Teaser */
.more-frogs-teaser {
    text-align: center;
    margin-top: 80px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(147, 51, 234, 0.08) 50%, rgba(52, 211, 153, 0.05) 100%);
    border-radius: 30px;
    border: 3px dashed rgba(236, 72, 153, 0.4);
    position: relative;
    overflow: hidden;
}

.more-frogs-teaser::before,
.more-frogs-teaser::after {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    animation: floatSparkle 3s ease-in-out infinite;
}

.more-frogs-teaser::before {
    top: 20px;
    left: 10%;
    animation-delay: 0s;
}

.more-frogs-teaser::after {
    bottom: 20px;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes floatSparkle {
    0%, 100% { opacity: 0.3; transform: translateY(0) rotate(0deg); }
    50% { opacity: 1; transform: translateY(-10px) rotate(20deg); }
}

.emerging-frogs-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 20px;
    animation: gentleBob 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(236, 72, 153, 0.3));
}

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

.teaser-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--pink-accent), var(--purple-accent), var(--pink-accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.teaser-note {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 15px;
    line-height: 1.8;
}

.teaser-cta {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--purple-accent);
    font-style: italic;
    margin: 0;
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(180deg, var(--cream) 0%, #fef7ff 50%, var(--cream) 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(79, 70, 229, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 20%, rgba(236, 72, 153, 0.08) 0%, transparent 30%);
    pointer-events: none;
}

.philosophy-image {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
}

.philosophy-section h2 {
    color: var(--pink-accent);
    margin-bottom: 40px;
    font-size: 2.8rem;
}

.philosophy-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

.philosophy-lead {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 35px;
}

.philosophy-content p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-medium);
    margin-bottom: 1.5em;
}

.philosophy-highlight {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--purple-accent);
    font-style: italic;
    padding: 35px 40px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(236, 72, 153, 0.08) 100%);
    border-radius: 24px;
    margin-top: 45px;
    border: 2px solid rgba(236, 72, 153, 0.15);
}

/* Every Relationship Section */
.every-relationship-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--pink-light) 50%, var(--cream) 100%);
    padding: 80px 20px;
    text-align: center;
}

.every-relationship-content {
    max-width: 600px;
    margin: 0 auto;
}

.every-relationship-lead {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-medium);
    margin-bottom: 0.3em;
}

.every-relationship-reveal {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--pink-accent);
    font-style: italic;
    margin-bottom: 50px;
    line-height: 1.4;
}

.every-relationship-examples {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.every-relationship-examples p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.every-relationship-examples em {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--purple-accent);
    font-style: italic;
}

.every-relationship-examples span {
    color: var(--text-light);
    font-size: 1rem;
}

.every-relationship-close {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    font-style: italic;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(79, 70, 229, 0.08) 100%);
    border-radius: 24px;
    border: 2px solid rgba(236, 72, 153, 0.15);
}

/* Mirror Section */
.mirror-section {
    background: linear-gradient(135deg, var(--cream) 0%, #f0fdf4 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.mirror-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(5, 150, 105, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.mirror-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.mirror-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Sparkle particles around mirror */
.mirror-visual::before,
.mirror-visual::after {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.mirror-visual::before {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.mirror-visual::after {
    bottom: 20%;
    left: 10%;
    animation-delay: 1.5s;
}

@keyframes sparkleFloat {
    0%, 100% { opacity: 0.4; transform: translateY(0) scale(1); }
    50% { opacity: 1; transform: translateY(-10px) scale(1.2); }
}

.mirror-frame-img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(5, 150, 105, 0.25));
    animation: mirrorGlow 4s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.mirror-frame-img:hover {
    transform: scale(1.05) rotate(2deg);
}

@keyframes mirrorGlow {
    0%, 100% { filter: drop-shadow(0 20px 40px rgba(5, 150, 105, 0.25)) drop-shadow(0 0 20px rgba(236, 72, 153, 0.1)); }
    50% { filter: drop-shadow(0 25px 50px rgba(5, 150, 105, 0.4)) drop-shadow(0 0 40px rgba(236, 72, 153, 0.2)); }
}

.mirror-text h2 {
    color: var(--forest-green);
}

.mirror-text .lead {
    color: var(--forest-green);
    font-size: 1.3rem;
    font-weight: 500;
}

.mirror-text p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
}

.mirror-text .highlight {
    font-style: italic;
    color: var(--emerald);
    font-size: 1.1rem;
    padding: 25px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-left: 4px solid var(--emerald);
    border-radius: 0 16px 16px 0;
    margin-top: 25px;
}

.mirror-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--forest-green), var(--emerald));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.mirror-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.4);
}

.mirror-cta .arrow {
    transition: transform 0.3s ease;
}

.mirror-cta:hover .arrow {
    transform: translateX(5px);
}

/* Why Frogs Section */
.all-frogs-section {
    background: url('images/bg-main.png') center/cover no-repeat;
    text-align: center;
}

.all-frogs-image {
    width: 320px;
    height: auto;
    margin-bottom: 40px;
    animation: float 6s ease-in-out infinite;
}

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

@keyframes magicPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(147, 51, 234, 0.3), 0 0 40px rgba(236, 72, 153, 0.2);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(147, 51, 234, 0.5), 0 0 60px rgba(236, 72, 153, 0.4);
        transform: scale(1.02);
    }
}

@keyframes sparkleText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.all-frogs-section blockquote {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-style: italic;
    margin-bottom: 40px;
    animation: magicPulse 3s ease-in-out infinite;
}

.all-frogs-section blockquote p {
    background: linear-gradient(
        90deg,
        var(--purple-accent) 0%,
        var(--pink-accent) 25%,
        var(--purple-accent) 50%,
        var(--pink-accent) 75%,
        var(--purple-accent) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sparkleText 4s linear infinite;
    font-size: inherit;
    max-width: none;
    margin: 0;
}

.all-frogs-section p {
    max-width: 550px;
    margin: 0 auto 0.8em;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.all-frogs-section .gentle {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--pink-accent);
    margin-top: 30px;
}

/* Science Section - Why a Fairy Tale */
.science-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--purple-light) 50%, var(--white) 100%);
    padding: 100px 20px;
    text-align: center;
}

.science-section h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--purple-accent);
    margin-bottom: 10px;
}

.science-section .section-intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.science-card {
    background: var(--white);
    border: 1px solid var(--purple-soft);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.science-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.1);
}

.science-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.science-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.science-closing {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--purple-accent);
    margin-top: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .science-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .science-card {
        padding: 24px;
    }
}

/* Coming Soon Section */
.coming-soon-section {
    background: linear-gradient(180deg, var(--cream) 0%, #fef7ff 50%, var(--cream) 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(79, 70, 229, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 20%, rgba(236, 72, 153, 0.08) 0%, transparent 30%);
    pointer-events: none;
}

.coming-soon-section .section-container {
    max-width: 900px;
}

.coming-soon-sparkle {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.coming-soon-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--purple-accent);
    margin-bottom: 10px;
}

.coming-soon-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 40px;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.coming-feature {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(236, 72, 153, 0.2);
    border-radius: 24px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.coming-feature .feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.coming-feature h3 {
    color: var(--pink-accent);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.coming-feature p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
}

.coming-soon-footnote {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 72, 153, 0.15);
}

@media (max-width: 768px) {
    .coming-soon-features {
        grid-template-columns: 1fr;
    }
}

/* Download Section */
.download-section {
    background: url('images/bg-main.png') center/cover no-repeat;
    text-align: center;
}

.download-section h2 {
    color: var(--text-dark);
}

.download-section .lead {
    margin-bottom: 40px;
}

.app-badges {
    margin-top: 30px;
}

.coming-soon {
    color: var(--text-light);
    font-size: 0.95rem;
}

.download-android {
    margin-top: 25px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--purple-accent);
    font-style: italic;
}

.download-android-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 5px;
}

.download-note {
    margin-top: 40px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #e9d5ff 0%, #ddd6fe 100%);
    color: #4c1d95;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7c3aed;
}

.footer-frog {
    width: 30px;
    height: auto;
}

.footer-brand p {
    color: #6b21a8;
    margin-top: 10px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #7c3aed;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d946ef;
}

.footer-creator {
    text-align: right;
}

.footer-creator p {
    color: #6b21a8;
}

.footer-creator a {
    color: var(--pink-medium);
    text-decoration: none;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    text-align: center;
    font-size: 0.85rem;
    color: #7c3aed;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #7c3aed;
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253, 242, 248, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-container {
        position: relative;
    }

    .nav-lang-dropdown {
        width: 100%;
    }

    .nav-lang-toggle {
        justify-content: center;
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid rgba(236, 72, 153, 0.15);
    }

    .nav-flags {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(236, 72, 153, 0.05);
        border-radius: 12px;
        padding: 8px;
    }

    .nav-flag {
        justify-content: center;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .mirror-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mirror-visual {
        order: -1;
    }

    .mirror-frame-img {
        width: 160px;
    }

    .frog-image {
        width: 140px;
        height: 140px;
    }

    .all-frogs-image {
        width: 120px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-creator {
        text-align: center;
    }

    .section-container {
        padding: 70px 20px;
    }

    .mirror-text .highlight {
        padding: 15px;
    }
}
/* Cache buster Fri  6 Feb 2026 10:50:41 CET */
/* Force update 1770372526 */
