/* Custom font */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a192f; /* Dark Navy Blue */
    color: #ccd6f6; /* Light text color */
}

/* Simple scroll animation */
html {
    scroll-behavior: smooth;
}

/* Custom accent color */
.text-accent {
    color: #64ffda; /* Light Teal/Mint */
}

.bg-accent {
    background-color: #64ffda;
}

.border-accent {
     border-color: #64ffda;
}

/* Glassmorphism effect for cards */
.card {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(136, 146, 176, 0.2);
}

/* Particles.js background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
