/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.app-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-logo h1 {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #6B46C1;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #6B46C1;
}

.cta-button {
    background: #6B46C1 !important;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #553C9A !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Language Switcher */
.language-switcher {
    margin-left: 1rem;
}

.lang-btn {
    background: none;
    border: 2px solid #6B46C1;
    border-radius: 25px;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6B46C1;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #6B46C1;
    color: white;
}

.lang-flag {
    font-size: 1rem;
}

.lang-text {
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 50%, #4C1D95 100%);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0.5rem;
    align-items: center;
    flex-grow: 1;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-subtitle-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.placeholder-image {
    background: linear-gradient(45deg, #F3F4F6, #E5E7EB);
    border: 2px dashed #A855F7;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B46C1;
    font-weight: 500;
    font-size: 1.1rem;
}

.hero-actual-image {
    height: 400px;
    width: 150%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem;
    margin-left: -25%;
}

.hero-actual-image img {
    width: 120%;
    height: 120%;
    object-fit: contain;
    object-position: center;
    filter: brightness(1.1);
    border-radius: 15px;
}

/* Sections */
.section-title {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #6B46C1;
    margin-bottom: 3rem;
}

/* Download Counter */
.download-counter {
    padding: 3rem 0;
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.counter-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.counter-stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.counter-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: white;
    min-width: 200px;
    display: inline-block;
    text-align: right;
}

.counter-plus {
    font-size: 2.5rem;
    font-weight: 700;
    color: #A855F7;
}

.counter-text {
    max-width: 400px;
}

.counter-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.counter-text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.counter-bull-image {
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 120px;
    height: auto;
    z-index: 1;
    transform: translateY(30%);
}

.counter-bull-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .counter-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .counter-number {
        font-size: 3rem;
        min-width: 150px;
    }
    
    .counter-plus {
        font-size: 2rem;
    }
    
    .counter-text h3 {
        font-size: 1.3rem;
    }
    
    .counter-text p {
        font-size: 0.9rem;
    }
    
    .counter-bull-image {
        left: 5%;
        width: 90px;
        transform: translateY(25%);
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: 
        radial-gradient(ellipse at top left, rgba(107, 70, 193, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    color: #6B46C1;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.feature-card-wide {
    grid-column: span 3;
    background: white;
    color: #333;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.feature-card-wide-text {
    flex: 0 0 40%;
    text-align: left;
}

.feature-card-wide h3 {
    color: #6B46C1;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card-wide p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-card-wide .feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-icon-image {
    flex: 0 0 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

/* Events Section */
.events {
    padding: 5rem 0;
    background: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.15);
}

.event-image {
    height: 200px;
    background: linear-gradient(45deg, #F3F4F6, #E5E7EB);
    border-bottom: 2px dashed #A855F7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B46C1;
    font-weight: 500;
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    color: #A855F7;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-title {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    color: #6B46C1;
    margin-bottom: 0.5rem;
}

.event-location {
    color: #666;
    margin-bottom: 1rem;
}

.event-price {
    font-weight: 600;
    color: #6B46C1;
    font-size: 1.1rem;
}

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

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: 
        radial-gradient(ellipse at center top, rgba(168, 85, 247, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(107, 70, 193, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-bull-image {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: auto;
    z-index: 1;
}

.testimonials-bull-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.testimonials-note {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: left;
    border: 1px solid rgba(168, 85, 247, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.08), transparent);
    transition: left 0.7s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.2);
    border-color: rgba(168, 85, 247, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-stars {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-original,
.testimonial-translation {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
    overflow-wrap: break-word;
    hyphens: auto;
}

.translate-btn {
    background: #6B46C1;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.translate-btn:hover {
    background: #553C9A;
    transform: translateY(-1px);
}

.translate-btn.showing-translation {
    background: #A855F7;
}

.translate-btn.showing-translation:hover {
    background: #9333EA;
}

.testimonial-author strong {
    color: #2c2c2c;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Download Section */
.download {
    padding: 1rem 0;
    background: 
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, #6B46C1 0%, #553C9A 50%, #4C1D95 100%);
    position: relative;
    color: white;
    overflow: visible;
    scroll-margin-top: 100px;
}


.download .container {
    position: relative;
    z-index: 2;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow: visible;
}

.download .section-title {
    color: white;
    text-align: left;
    margin-bottom: 0.5rem;
}

.download-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.download-testimonial {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-testimonial .testimonial-stars {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.download-testimonial .testimonial-text {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.download-testimonial .testimonial-author {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white !important;
}

.download-testimonial .testimonial-author strong {
    display: inline;
    margin-right: 0.5rem;
    color: white !important;
}

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

.download-buttons img {
    height: 60px;
    width: auto;
}

.download-buttons img[alt="Get it on Google Play"] {
    height: 85px;
}

.store-button {
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 15px;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #6B46C1;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.store-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.store-button:hover {
    background: #f8f9ff;
    border-color: #ffffff;
    color: #553C9A;
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 20px rgba(107, 70, 193, 0.2);
}

.store-button:hover::before {
    left: 100%;
}

.store-button-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.store-text {
    font-size: 0.85rem;
    opacity: 1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.download-bull-showcase {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    margin: -13rem 0 -3rem 0;
    position: relative;
    z-index: 5;
    overflow: visible;
}

.download-bull-showcase img {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.4));
    border-radius: 15px;
}

.speech-bubble {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    background: white;
    color: #6B46C1;
    padding: 1rem 1rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    font-size: 1rem;
    max-width: 280px;
    text-align: center;
    line-height: 1.4;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid white;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    scroll-margin-top: 100px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #6B46C1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.15);
}

.faq-item h3 {
    color: #6B46C1;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: #4B5563;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-item-wide {
    grid-column: span 2;
}

.faq-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.faq-cta .btn {
    background: #6B46C1;
    color: white;
    border: 2px solid #6B46C1;
    backdrop-filter: none;
}

.faq-cta .btn:hover {
    background: #553C9A;
    border-color: #553C9A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item-wide {
        grid-column: span 1;
    }
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #A855F7;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #A855F7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.mobile-active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .language-switcher {
        position: absolute;
        top: 15px;
        right: 70px;
    }
    
    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-subtitle-bottom {
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .events-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card-wide {
        grid-column: span 1;
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-card-wide-text {
        flex: none;
        text-align: center;
    }
    
    .feature-card-wide h3 {
        font-size: 1.6rem;
    }
    
    .feature-card-wide p {
        font-size: 1rem;
    }
    
    .feature-icon-image {
        flex: none;
        margin-top: 1.5rem;
    }
    
    .feature-icon-image img {
        max-width: 200px;
    }
    
    .testimonials {
        padding-bottom: 12rem !important;
    }
    
    .testimonials-bull-image {
        position: absolute !important;
        left: 0px !important;
        bottom: 10px !important;
        top: auto !important;
        transform: translateY(0) !important;
        width: 180px !important;
        z-index: 3 !important;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-text {
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .download-bull-showcase {
        margin: 6rem 0 5rem 0;
        height: 250px;
    }
    
    .speech-bubble {
        top: calc(10% + 30px);
        left: 50px;
        transform: translateY(-50%);
        font-size: 0.9rem;
        max-width: 200px;
        padding: 0.8rem 1rem;
    }
    
    .speech-bubble::after {
        top: auto;
        bottom: -15px;
        right: 30px;
        left: auto;
        transform: none;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 15px solid white;
        border-bottom: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-card {
        margin: 0 10px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .store-button {
        width: 100%;
        text-align: center;
    }
    
    .store-button-content {
        align-items: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > *,
.feature-card,
.event-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Screenshots Page Styles */
.screenshots-page {
    margin-top: 70px;
    padding: 4rem 0;
    background: white;
    min-height: 80vh;
}

.screenshots-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.screenshots-page .page-title {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #6B46C1;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.screenshots-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.screenshot-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.2);
    border-color: #A855F7;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin: 0 auto;
    object-fit: contain;
    display: block;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem 1rem 1rem 1rem;
}

.screenshot-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #6B46C1;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-top: 2px solid #A855F7;
    margin-bottom: 0.5rem;
}

.screenshot-description {
    padding: 0 1rem 1.5rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.screenshots-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

.screenshots-footer .btn {
    margin: 0 0.5rem;
}

/* Responsive design for screenshots */
@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .screenshots-page .page-title {
        font-size: 2.5rem;
    }
    
    .screenshot-item img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .screenshots-page {
        padding: 3rem 0;
    }
    
    .screenshots-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .screenshots-page .page-title {
        font-size: 2rem;
    }
    
    .screenshot-item img {
        max-width: 180px;
        padding: 1rem;
    }
    
    .screenshots-footer .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 200px;
    }
}

/* Privacy Policy Page Styles */
.privacy-page {
    margin-top: 70px;
    padding: 4rem 0;
    background: white;
    min-height: 80vh;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #6B46C1;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
}

.privacy-section h3 {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #6B46C1;
    margin-bottom: 1rem;
    border-bottom: 2px solid #A855F7;
    padding-bottom: 0.5rem;
}

.privacy-section p {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.privacy-section a {
    color: #6B46C1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #553C9A;
    text-decoration: underline;
}

.privacy-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-menu a:focus,
.store-button:focus {
    outline: 2px solid #6B46C1;
    outline-offset: 2px;
}

/* Parallax Effects */
.parallax-container {
    overflow: hidden;
    position: relative;
}

.parallax-element {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.parallax-bg {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.parallax-slow {
    transform: translateZ(-1px) scale(2);
}

.parallax-medium {
    transform: translateZ(-0.5px) scale(1.5);
}

.parallax-fast {
    transform: translateZ(0px) scale(1);
}

/* Hero section parallax */
.hero {
    position: relative;
    overflow: hidden;
    perspective: 1px;
    transform-style: preserve-3d;
}

.hero-image img {
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(103, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    will-change: transform;
}

/* Floating animations for parallax elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

.float-element {
    animation: float 6s ease-in-out infinite;
}

.float-element-reverse {
    animation: floatReverse 8s ease-in-out infinite;
}

/* Section reveal animations */
.section-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grid items */
.stagger-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Apply delays for staggered effect */
.stagger-reveal:nth-child(1) { transition-delay: 0.1s; }
.stagger-reveal:nth-child(2) { transition-delay: 0.2s; }
.stagger-reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-reveal:nth-child(4) { transition-delay: 0.4s; }
.stagger-reveal:nth-child(5) { transition-delay: 0.5s; }
.stagger-reveal:nth-child(6) { transition-delay: 0.6s; }
.stagger-reveal:nth-child(7) { transition-delay: 0.7s; }
.stagger-reveal:nth-child(8) { transition-delay: 0.8s; }
.stagger-reveal:nth-child(9) { transition-delay: 0.9s; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .parallax-element,
    .float-element,
    .float-element-reverse,
    .section-reveal,
    .stagger-reveal {
        animation: none;
        transition: none;
        transform: none;
        opacity: 1;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* About page styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.about-hero .section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 60px 0;
}

.about-story .story-section {
    margin-bottom: 4rem;
}

.about-story h2 {
    color: #6B46C1;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.team-section {
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E5E7EB;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-member h3 {
    color: #6B46C1;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-member-role {
    color: #A855F7;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.team-member-location {
    color: #6B7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-member-description {
    color: #4B5563;
    line-height: 1.6;
    font-size: 1rem;
}

.collaboration-section,
.terinov-section {
    margin-bottom: 4rem;
}

.collaboration-card,
.terinov-card {
    background: white;
    color: #333;
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.collaboration-card {
    background: #4C1D95;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.collaboration-card h3,
.terinov-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #6B46C1;
}

.collaboration-card h3 {
    color: white;
}

.collaboration-card p,
.terinov-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4B5563;
}

.collaboration-card p {
    color: rgba(255, 255, 255, 0.9);
}

.collaboration-card a,
.terinov-card a {
    color: #6B46C1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.collaboration-card a:hover,
.terinov-card a:hover {
    color: #553C9A;
    text-decoration: underline;
}

/* Collaboration logo styling */
.collaboration-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.collaboration-logo a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.collaboration-logo a:hover {
    transform: scale(1.05);
    opacity: 0.8;
    text-decoration: none;
}

.collaboration-logo img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Partnerships section */
.partnerships {
    padding: 60px 0;
}

.partnerships-section {
    text-align: center;
}

.partnerships-section h2 {
    color: #6B46C1;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.partnerships-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 1.5rem 1.3rem;
    background: #4C1D95;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: max-content;
    min-width: 160px;
    max-width: 350px;
    min-height: 160px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    flex: 0 0 auto;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(76, 29, 149, 0.3);
    background: #553C9A;
    text-decoration: none;
    color: inherit;
}

.partner-item img {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.2);
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.partner-description {
    color: white;
    margin-top: auto;
}

.partner-description h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: white;
    line-height: 1.2;
    white-space: nowrap;
}

.partner-description p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive adjustments for partnerships */
@media (max-width: 1200px) {
    .partnerships-grid {
        gap: 1rem;
    }
    
    .partner-item {
        min-width: 140px;
        max-width: 300px;
        padding: 1.6rem 1.2rem 1.2rem;
    }
    
    .partner-item img {
        max-width: 140px;
        max-height: 70px;
    }
    
    .partner-description h3 {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .partnerships {
        padding: 30px 0;
    }
    
    .partnerships-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .partnerships-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .partner-item {
        width: max-content;
        min-width: 200px;
        max-width: 90vw;
        min-height: 140px;
        padding: 1.5rem 1.2rem 1rem;
        flex: none;
    }

    .partner-item img {
        max-width: 140px;
        max-height: 70px;
    }

    .partner-description h3 {
        font-size: 0.85rem;
    }
}

.about-cta {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.about-cta h2 {
    color: #6B46C1;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-cta p {
    font-size: 1.2rem;
    color: #374151;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

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

.about-buttons .btn-primary {
    background: #6B46C1;
    color: white;
    border: 2px solid #6B46C1;
    backdrop-filter: none;
}

.about-buttons .btn-primary:hover {
    background: #553C9A;
    border-color: #553C9A;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.3);
}

.about-buttons .btn-secondary {
    background: transparent;
    color: #6B46C1;
    border: 2px solid #6B46C1;
}

.about-buttons .btn-secondary:hover {
    background: #6B46C1;
    color: white;
    border-color: #6B46C1;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.2);
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo a:hover {
    color: inherit;
}

/* Responsive design for about page */
@media (max-width: 768px) {
    .about-hero .section-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-story h2 {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .collaboration-card,
    .terinov-card {
        padding: 2rem;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-buttons .btn {
        width: 200px;
    }
}
