/* Banner Styles */
.voxify-banner-container {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voxify-banner-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.voxify-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.voxify-app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.voxify-banner-text {
    flex: 1;
}

.voxify-banner-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.voxify-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

.voxify-download-btn {
    display: inline-block;
    background: #00875f; /* Google Play green-ish */
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.voxify-download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 135, 95, 0.3);
}

/* Responsive Banner */
@media (max-width: 600px) {
    .voxify-banner-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Popup Styles */
.voxify-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(4px);
}

.voxify-popup-overlay.show-popup {
    opacity: 1;
    visibility: visible;
}

.voxify-popup-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.voxify-popup-overlay.show-popup .voxify-popup-box {
    transform: scale(1);
}

.voxify-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
}

.voxify-popup-close:hover {
    color: #333;
}

.voxify-popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.voxify-popup-title {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    color: #222;
    font-weight: 700;
}

.voxify-popup-desc {
    margin: 0 0 25px 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.voxify-popup-actions .voxify-download-btn {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 1.05rem;
}

/* Animations */
@keyframes voxify-pulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 135, 95, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 8px 25px rgba(0, 135, 95, 0.4); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 135, 95, 0.2); }
}

@keyframes voxify-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.voxify-attention-effect {
    animation: voxify-pulse 2.5s infinite ease-in-out;
}

.voxify-shimmer {
    background: linear-gradient(90deg, #00875f 25%, #00b383 50%, #00875f 75%);
    background-size: 200% auto;
    animation: voxify-shimmer 3s linear infinite;
    color: #fff !important;
}
.voxify-shimmer:hover {
    background-position: right center;
}

/* Widget Styles */
.voxify-widget-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.voxify-widget-icon {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px;
    max-width: 60px;
    border-radius: 12px;
    margin: 0;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.voxify-widget-content {
    flex: 1;
    text-align: left;
}

.voxify-widget-text h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.voxify-widget-text p {
    margin: 0 0 8px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
}

.voxify-download-btn-mini {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}
