/* Download Page Styles */

.download-hero {
    background: #ffffff;
    padding: 8rem 0 4rem;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #6B7280;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #1F2937;
    border: 1px solid #1F2937;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 240px;
}

.download-btn:hover {
    background: #111827;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(31, 41, 55, 0.2);
}

.download-btn.android-btn {
    background: #ffffff;
    color: #1F2937;
    border-color: #D1D5DB;
}

.download-btn.android-btn:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-content i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.small-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

.large-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.download-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6B7280;
}

.phone-mockup {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #111827;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    color: #1F2937;
}

.screen-content {
    padding: 1.5rem 1rem;
    height: 100%;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.app-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.music-discovery h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding: 0 0.5rem;
}

.music-cards-demo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-card {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #E5E7EB;
}

.demo-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #3b82f6;
}

.demo-info span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.demo-info small {
    color: #6B7280;
    font-size: 0.8rem;
}

.features-showcase {
    padding: 6rem 0;
    background: #F9FAFB;
}

.features-showcase .section-title {
    color: #111827;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: #3b82f6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.feature-item p {
    color: #6B7280;
    line-height: 1.6;
}

.app-screenshots {
    padding: 6rem 0;
    background: #ffffff;
}

.app-screenshots .section-title {
    color: #111827;
}

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

.screenshot {
    text-align: center;
}

.screenshot-frame {
    width: 200px;
    height: 400px;
    background: #111827;
    border-radius: 25px;
    padding: 10px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.screenshot-content {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    color: #1F2937;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #3b82f6;
}

.demo-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.screenshot h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.screenshot p {
    color: #6B7280;
    font-size: 0.9rem;
}

.download-cta {
    padding: 6rem 0;
    background: #F9FAFB;
    text-align: center;
}

.download-cta .cta-content h2 {
    color: #111827;
}

.download-cta .cta-content p {
    color: #6B7280;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.cta-note {
    font-size: 0.9rem;
    color: #9CA3AF;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .phone-mockup {
        order: -1;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
        padding: 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-carousel {
        grid-template-columns: 1fr;
    }
    
    .download-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-stats {
        justify-content: center;
        gap: 2rem;
    }
} 