@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --bg-dark: #0A0E1F;
    --bg-card: #1A1F35;
    --accent-gold: #D4AF37;
    --accent-gold-light: #FFD700;
    --text-light: #F5F5F5;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Neomorphism & Glow Effects */
.neo-card {
    background: var(--bg-card);
    box-shadow: 8px 8px 16px #05070f, 
                -8px -8px 16px #1f2540;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gold-glow {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.gold-glow:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.gold-gradient-text {
    background: linear-gradient(to right, #D4AF37, #FFD700, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Particles Background Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark); 
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold); 
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Modal/Popup */
.modal-overlay {
    background-color: rgba(10, 14, 31, 0.95);
    backdrop-filter: blur(5px);
}

/* Form Inputs */
.input-dark {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    transition: all 0.3s ease;
}
.input-dark:focus {
    border-color: var(--accent-gold-light);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    outline: none;
}
