/* App Detail Page Styles */
.app-detail-page {
    padding-top: 80px;
    min-height: 100vh;
    background: #ffffff;
}

/* App Hero Section */
.app-hero {
    background: linear-gradient(to bottom, #f8f8f8, #ffffff);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.app-header {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-info {
    flex: 1;
}

.app-title {
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    color: #333;
}

.app-version {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-bottom: 1rem;
}

.app-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.meta-item {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.download-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* App Content */
.app-content {
    padding: 2rem 0;
}

/* Screenshots Section */
.app-screenshots {
    margin-bottom: 3rem;
}

.screenshots-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.screenshot {
    height: 400px;
    border-radius: 12px;
    scroll-snap-align: start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Description Section */
.app-description {
    margin-bottom: 3rem;
}

.description-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

/* Features Section */
.app-features {
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 12px;
}

.feature-item i {
    color: #000;
}

/* Additional Information */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.info-item {
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 12px;
}

.info-label {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .app-meta {
        justify-content: center;
    }

    .app-badges {
        justify-content: center;
    }

    .screenshot {
        height: 300px;
    }

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

    .download-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .app-title {
        font-size: 1.5rem;
    }

    .app-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .app-icon {
        width: 100px;
        height: 100px;
    }

    .screenshot {
        height: 200px;
    }

    .download-btn {
        width: 100%;
        padding: 0.75rem;
    }
}

/* Section Headings */
h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #000;
} 