/**
 * Base Styles
 * Global styles, fonts, and common elements
 */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Base Typography */
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.font-orbitron {
    font-family: 'Inter', sans-serif;
}

/* Form Elements */
input, select, textarea {
    background: rgba(0, 0, 0, 0.5);
    border: none !important;
    color: #ffffff;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 20, 147, 0.25);
}

/* Animated Background Container */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #1a0033 0%, #0d0019 50%, #1a0033 100%);
}

/* Ensure content is above particles */
body > *:not(#particles-js) {
    /* position: relative; */
}

