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

:root {
    --primary: #6366f1;
    --secondary: #a855f7;
    --dark-bg: #030712;
}

body { 
    font-family: 'Hind Siliguri', sans-serif; 
    background-color: var(--dark-bg);
    color: #e2e8f0;
    margin: 0;
    overflow-x: hidden;
}

#bg-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

.glass {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.neon-text {
    color: #fff;
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.page { display: none; opacity: 0; transform: translateY(15px); }
.active { display: block; animation: fadeIn 0.5s forwards; }

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

.btn-action {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: all 0.3s ease;
    color: white;
}
.btn-action:hover { transform: scale(1.02); filter: brightness(1.1); }

#v-cover { background-size: cover; background-position: center; transition: 0.5s; }

input, textarea {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}
input:focus { border-color: var(--primary) !important; outline: none; }
