/*
Theme Name: QuickYen Premium
Author: Aiman El-Shaboury
Description: High-end Fintech Infrastructure for QuickYen.com. Institutional JPY settlement layers.
Version: 3.1
*/

:root {
    --midnight: #0a192f;
    --gold: #c5a059;
    --mint: #00ffcc;
    --glass: rgba(17, 34, 64, 0.75);
    --border: rgba(197, 160, 89, 0.25);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--midnight);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.shimmer {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.glow-mint { box-shadow: 0 0 30px rgba(0, 255, 204, 0.4); }
.glow-gold { box-shadow: 0 0 30px rgba(197, 160, 89, 0.4); }

.pulse-green {
    width: 12px;
    height: 12px;
    background-color: var(--mint);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(0, 255, 204, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 204, 0); }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--midnight);
    border: 1px solid var(--gold);
    padding: 3rem;
    border-radius: 2.5rem;
    max-width: 700px;
    width: 95%;
    position: relative;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-gold {
    background: var(--gold);
    color: var(--midnight);
    font-weight: 900;
    padding: 1rem 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}
