/* App Landing Page Styles */

.app-landing {
    background: var(--bg-primary);
}

/* App Hero Section */
.app-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.app-hero-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.app-icon-large {
    flex-shrink: 0;
}

.app-icon-large img {
    width: 160px;
    height: 160px;
    border-radius: 36px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.app-hero-info {
    flex: 1;
}

.app-hero-info h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.app-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.app-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.app-rating-large {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-rating-large .stars {
    color: #FFB800;
    font-size: 1.2rem;
}

.app-category {
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.app-download-section {
    margin-top: 30px;
}

.btn-download-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-download-large i {
    font-size: 2.5rem;
}

.btn-download-large > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.download-label {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
}

.download-store {
    font-size: 1.2rem;
    font-weight: 600;
}

.app-price {
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Screenshots Section */
.app-screenshots-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.app-screenshots-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.screenshots-gallery {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 20px;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
}

.screenshot-large {
    flex-shrink: 0;
    width: 280px;
    text-align: center;
}

.screenshot-large img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.screenshot-large p {
    margin-top: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Features Section */
.app-features {
    padding: 80px 0;
}

.app-features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-primary);
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    font-size: 1.8rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Description Section */
.app-description {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.app-description h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* CTA Section */
.app-cta {
    padding: 80px 0;
    text-align: center;
}

.app-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.app-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .app-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .app-icon-large img {
        width: 120px;
        height: 120px;
    }
    
    .app-hero-info h1 {
        font-size: 2rem;
    }
    
    .app-subtitle {
        font-size: 1.1rem;
    }
    
    .app-meta {
        justify-content: center;
    }
    
    .screenshots-gallery {
        padding: 20px;
    }
    
    .screenshot-large {
        width: 220px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .app-cta h2 {
        font-size: 1.8rem;
    }
}

