/* Landing Page Specific Styles (Final Version) */
.landing-body {
    background-color: #1A0A24; 
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}
.hero-section .logo {
    width: 100px;
    margin-bottom: 25px;
}
.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 600px;
    margin-bottom: 20px;
    color: #FFFFFF;
}
.hero-section p {
    font-size: 1.1rem;
    max-width: 600px;
    color: #E0E0E0;
    margin-bottom: 35px;
}

.download-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #8E44AD;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(142, 68, 173, 0.4);
    transition: transform 0.2s, box-shadow 0.3s;
    text-decoration: none;
}
.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(142, 68, 173, 0.6);
}

/* Feature Sections */
.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.feature.feature-reverse {
    flex-direction: row-reverse;
}
.feature-image {
    flex: 1;
    max-width: 300px; /* === SIZE REDUCED HERE === */
}
.feature-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    /* === TILT ANIMATION SETUP === */
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform: rotate(5deg) scale(0.9);
}
/* Reverse tilt for alternate sections */
.feature.feature-reverse .feature-image img {
    transform: rotate(-5deg) scale(0.9);
}

.feature-text {
    flex: 1;
    max-width: 500px;
}
.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: #FFFFFF;
}
.feature-text h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--active-color);
    border-radius: 2px;
}
.feature-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #E0E0E0;
}

/* CTA & Footer */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: rgba(0,0,0,0.2);
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #FFFFFF;
}
.cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #E0E0E0;
}
.landing-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-small {
    width: 80px;
    margin-bottom: 15px;
}
.landing-footer p {
    color: #E0E0E0;
}

/* Scrolling Animation */
.animated-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated-section.visible {
    opacity: 1;
    transform: translateY(0);
}
/* === TILT ANIMATION TRIGGER === */
.animated-section.visible .feature-image img {
    transform: rotate(0deg) scale(1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section h1, .feature-text h2, .cta-section h2 {
        font-size: 2rem;
    }
    .feature, .feature.feature-reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 60px 20px;
    }
    .feature-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}