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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #2D2C35;
    color: #F4F4F8;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px 40px;
}

.mascot {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 5px;
    color: #F4F4F8;
}

.hero .subtitle {
    font-size: 1.3em;
    color: #B0AFB9;
    margin-bottom: 10px;
}

.hero .pronunciation {
    font-size: 1em;
    color: #7a7a7a;
    margin-bottom: 25px;
}

.hero .tagline {
    font-size: 1.4em;
    color: #E77A95;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero .promo {
    font-size: 1.1em;
    color: #B0AFB9;
    max-width: 700px;
    margin: 0 auto;
}

/* Store Badges */
.store-badges {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.badge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.store-badge {
    height: 50px;
    width: auto;
}

.store-badge-google {
    height: 74px;
    margin: -12px 0;
}

.store-badge-apple {
    height: 50px;
}

.store-badge-link:hover {
    opacity: 0.85;
}

.badge-coming-soon {
    opacity: 0.4;
    filter: grayscale(100%);
}

.coming-soon-label {
    font-size: 0.75em;
    color: #B0AFB9;
    margin-top: 6px;
}

/* Screenshots Section */
.screenshots {
    padding: 60px 20px;
    background: linear-gradient(180deg, #2D2C35 0%, #1a1a20 100%);
}

.screenshots h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #F4F4F8;
}

.screenshot-gallery {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.screenshot-item {
    flex: 0 0 auto;
    text-align: center;
    scroll-snap-align: center;
}

.screenshot-item img {
    width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.screenshot-item img:hover {
    transform: scale(1.03);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightbox-zoom 0.3s ease;
}

@keyframes lightbox-zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.screenshot-item .caption {
    margin-top: 15px;
    font-size: 1.1em;
    color: #B0AFB9;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 80px 20px;
}

.features h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 50px;
    color: #F4F4F8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: #3a3944;
    border-radius: 16px;
    padding: 30px;
}

.feature-card h3 {
    color: #E77A95;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.feature-card p {
    color: #B0AFB9;
    font-size: 1em;
}

/* Allergens Section */
.allergens {
    padding: 60px 20px;
    background: #3F6B75;
}

.allergens h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 15px;
    color: #F4F4F8;
}

.allergens .intro {
    text-align: center;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 40px;
}

.allergen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.allergen-item {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: 500;
}

/* Highlights Section */
.highlights {
    padding: 80px 20px;
}

.highlights h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 50px;
    color: #F4F4F8;
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-item .icon {
    font-size: 1.5em;
    flex-shrink: 0;
}

.highlight-item p {
    color: #B0AFB9;
    font-size: 1.05em;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 60px 20px 80px;
    background: linear-gradient(180deg, #2D2C35 0%, #3a3944 100%);
}

.cta h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.cta p {
    color: #B0AFB9;
    margin-bottom: 30px;
    font-size: 1.1em;
}

/* Footer */
footer {
    background: #1a1a20;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    color: #B0AFB9;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.95em;
}

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

.language-selector {
    margin-bottom: 25px;
}

.language-selector span {
    color: #7a7a7a;
    font-size: 0.85em;
    margin-right: 10px;
}

.language-selector a {
    color: #B0AFB9;
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.9em;
}

.language-selector a:hover,
.language-selector a.active {
    color: #E77A95;
}

.lang-group {
    display: inline-block;
    position: relative;
    margin: 0 8px;
}

.lang-group select {
    appearance: none;
    background: transparent;
    border: 1px solid #555;
    border-radius: 4px;
    color: #B0AFB9;
    font-size: 0.9em;
    padding: 4px 8px;
    cursor: pointer;
}

.lang-group select:hover,
.lang-group.active select {
    border-color: #E77A95;
    color: #E77A95;
}

.lang-group select:focus {
    outline: none;
    border-color: #E77A95;
}

.lang-group .lang-label {
    font-size: 0.85em;
    color: #7a7a7a;
    margin-right: 4px;
}

.disclaimer {
    color: #666;
    font-size: 0.8em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }

    .hero .tagline {
        font-size: 1.2em;
    }

    .screenshot-item img {
        width: 240px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .language-selector a {
        display: inline-block;
        margin: 5px 8px;
    }
}
