/* Google Play Button Styles - Maximum Specificity */
.google-play-button {
    margin-bottom: 2rem !important;
    display: flex !important;
    justify-content: center !important;
}

.google-play-button .play-store-btn {
    display: flex !important;
    align-items: center !important;
    background: #FFFFFF !important;
    color: #007BFF !important;
    text-decoration: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    border: 2px solid #007BFF !important;
    position: relative !important;
    overflow: hidden !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

.google-play-button .play-store-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s !important;
}

.google-play-button .play-store-btn:hover::before {
    left: 100% !important;
}

.google-play-button .play-store-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.2) !important;
    background: #F5F5F5 !important;
    color: #0056CC !important;
}

.google-play-button .play-store-btn:hover .play-store-icon {
    color: #0056CC !important;
}

.google-play-button .play-store-btn:hover .play-store-name {
    color: #0056CC !important;
}

.google-play-button .play-store-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.google-play-button .play-store-icon {
    margin-right: 12px !important;
    display: flex !important;
    align-items: center !important;
    color: #007BFF !important;
}

.google-play-button .play-store-icon svg {
    width: 24px !important;
    height: 24px !important;
    color: #007BFF !important;
}

.google-play-button .play-store-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.google-play-button .play-store-label {
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    opacity: 0.8 !important;
    line-height: 1 !important;
    color: #666666 !important;
}

.google-play-button .play-store-name {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    margin-top: 2px !important;
    color: #007BFF !important;
}

/* Mobile styles */
@media (max-width: 768px) {
    .google-play-button .play-store-btn {
        padding: 10px 20px !important;
        border-radius: 8px !important;
    }
    
    .google-play-button .play-store-icon {
        margin-right: 8px !important;
    }
    
    .google-play-button .play-store-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .google-play-button .play-store-label {
        font-size: 0.7rem !important;
    }
    
    .google-play-button .play-store-name {
        font-size: 1rem !important;
    }
}

/* Tablet styles */
@media (min-width: 768px) {
    .google-play-button .play-store-btn {
        padding: 16px 32px !important;
        border-radius: 12px !important;
    }
    
    .google-play-button .play-store-icon {
        margin-right: 16px !important;
    }
    
    .google-play-button .play-store-icon svg {
        width: 28px !important;
        height: 28px !important;
    }
    
    .google-play-button .play-store-label {
        font-size: 0.85rem !important;
    }
    
    .google-play-button .play-store-name {
        font-size: 1.3rem !important;
    }
}

/* Desktop styles */
@media (min-width: 1200px) {
    .google-play-button .play-store-btn {
        padding: 20px 40px !important;
        border-radius: 12px !important;
    }
    
    .google-play-button .play-store-icon {
        margin-right: 20px !important;
    }
    
    .google-play-button .play-store-icon svg {
        width: 32px !important;
        height: 32px !important;
    }
    
    .google-play-button .play-store-label {
        font-size: 0.9rem !important;
    }
    
    .google-play-button .play-store-name {
        font-size: 1.5rem !important;
    }
} 