/* Custom Styles for Financial Freedom Calculator */

/* Neon Glow Effects */
.neon-focus:focus {
    box-shadow: 0 0 10px #10b981, 0 0 20px #10b981;
    border-color: #10b981;
}

.btn-glow:hover {
    box-shadow: 0 0 15px #10b981, 0 0 30px #34d399;
}

/* Blur Effect for Lead Gate */
.blur-content {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.5s ease;
}

.blur-removed {
    filter: blur(0);
    pointer-events: auto;
    user-select: auto;
}

/* Modal Overlay */
.lead-gate-overlay {
    background: rgba(2, 6, 23, 0.85); /* slate-950 with opacity */
    backdrop-filter: blur(4px);
}

/* AdSense Placeholders */
.adsense-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px dashed #475569; /* slate-600 */
    color: #94a3b8; /* slate-400 */
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a; 
}

::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569; 
}
