/* Reviews Section Styles */
.reviews-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #667eea;
    margin-bottom: 20px;
}

.app-rating {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rating-number {
    font-size: 4em;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.stars {
    font-size: 2em;
    color: #ffd700;
    margin-bottom: 10px;
}

.rating-count {
    font-size: 1.2em;
    color: #666;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    flex-shrink: 0;
}

.review-user-info {
    flex: 1;
}

.review-username {
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
    margin-bottom: 3px;
}

.review-date {
    color: #999;
    font-size: 0.9em;
}

.review-country {
    color: #667eea;
    font-size: 0.9em;
}

.review-stars {
    color: #ffd700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.review-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.review-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.95em;
}

.verified-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    margin-top: 10px;
}

/* Download Buttons Section */
.download-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 40px 0;
    border-radius: 20px;
}

.download-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

.download-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #333;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.store-icon {
    font-size: 2.5em;
}

.store-text {
    text-align: left;
}

.store-text-small {
    font-size: 0.8em;
    color: #666;
    font-weight: normal;
}

.store-text-large {
    font-size: 1.2em;
    color: #333;
    font-weight: bold;
}

.app-features-mini {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-mini {
    text-align: center;
}

.feature-mini-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.feature-mini-text {
    font-size: 0.9em;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-number {
        font-size: 3em;
    }
    
    .download-section h2 {
        font-size: 2em;
    }
    
    .app-features-mini {
        flex-direction: column;
        gap: 15px;
    }
}
