/* Daily Loop App Page Specific Styles */

/* App Description */
.description-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.description-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 500;
    text-align: right;
    color: var(--gray-color);
}

/* Download Section */
.download {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    text-align: center;
}

.download .section-title,
.download .section-subtitle {
    color: white;
}

.download-buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* App Detail Xhd Adjustments */
.app-detail-xhd {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

/* Animation for elements */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
} 