/* Enhanced Styles for OnlyInvest */

/* Harmonized colors for all cards in the solutions section */
/* Card for Canal privé - matching standard card */
.offer-card.elite {
    background-color: var(--card-bg); /* Same as standard offer card */
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-sm);
    animation: none; /* Remove pulsing animation */
}

.offer-card.elite .offer-header h3 {
    color: var(--text-color); /* Same as standard text */
}

.offer-card.elite .badge.elite-badge {
    background-color: var(--success-color); /* Using standard success color */
}

/* Subscription box styling - standard */
.subscription-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.subscription-box h4 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

/* Card for IA Factory - matching standard card */
.offers-container .offer-card.premium.special-offer {
    background-color: var(--card-bg) !important; /* Force standard card background */
    background: var(--card-bg) !important; /* Override any gradient */
    background-image: none !important; /* Remove any background image */
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: var(--shadow-sm) !important;
    max-width: 320px !important; /* Match other cards width */
    margin: 30px auto 0 !important; /* Match other cards margin */
    order: initial !important; /* Reset order */
}

.offers-container .offer-card.premium.special-offer:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Button styles - matching primary button */
.btn-elite {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-elite:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--border-glow);
}

/* Video Background Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.3;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.9), rgba(21, 21, 21, 0.95));
    z-index: -1;
}

/* Ensure hero content is visible over video */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments for video background */
@media (max-width: 768px) {
    .video-background video {
        height: 100%;
        width: auto;
    }
}
