/* Store Badges Styles */
.store-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.store-badge {
    display: inline-block;
    transition: transform 0.3s ease;
}

.store-badge:hover {
    transform: translateY(-5px);
}

.store-badge-img {
    height: 60px;
    border-radius: 8px;
    width: auto;
    max-width: 180px;
}

.coming-soon-badge {
    position: relative;
    display: inline-block;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.play-badge {
    height: 60px;
    border-radius: 8px;
    width: auto;
    max-width: 180px;
}

.availability-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--light-text);
    opacity: 0.8;
}

.availability-text {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-text);
    opacity: 0.8;
}

/* Hero CTA adjustments */
.cta-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* CTA section adjustments */
.cta-section .app-badges {
    margin-top: 25px;
    justify-content: center;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive styles */
@media (max-width: 576px) {
    .store-badge-img, 
    .play-badge {
        height: 50px;
    }
    
    .store-badges {
        gap: 15px;
    }
    
    .cta-section .app-badges {
        gap: 15px;
    }
    
    .availability-note,
    .availability-text {
        font-size: 0.8rem;
    }
}
