/*
 =============================================================================
 * BOOTSTRAP OVERRIDES & CUSTOM EFFECTS (CLASSIC GREEN THEME)
 =============================================================================
*/

/* Glassmorphism Essentials */
.glass-content-box {
    background: rgba(20, 35, 28, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.glass-modal-content {
    background: #062b21 !important; /* Solid dark green for modal */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(16, 185, 129, 0.05);
}

/* Custom Buttons & Icons */
.btn-premium-green {
    background: linear-gradient(135deg, #10b981, #960505);
    border: none;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}
.btn-premium-green:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.5);
    color: white;
}

.modal-title-icon {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, #10b981, #059669);
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

/* Hover Effects */
.bullet-item {
    background: rgba(0, 0, 0, 0.2);
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}
.bullet-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(5px);
    border-left-color: #34d399;
}

.bullet-icon {
    width: 45px; height: 45px;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    font-size: 20px;
}

.help-card-item {
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}
.help-card-item:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.3) !important;
    transform: translateY(-2px);
}
.help-card-icon {
    width: 40px; height: 40px; font-size: 18px;
}

/* Animations */
.pulse-glow-btn { animation: glowPulse 2s infinite; }
@keyframes glowPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.fade-in-scroll { opacity: 0; } /* Initial state for JS observer */