/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

:root {
    --primary-color: #00d4ff;
    --secondary-color: #0066ff;
    --accent-3: #8338ec;
    --dark-bg: #000000;
    --text-color: #ffffff;
    --text-secondary: #8ba8c4;
}

body {
    font-family: 'Space Grotesk', 'Courier New', sans-serif;
    background: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    cursor: none;
    position: relative;
    opacity: 0;
    animation: pageLoadFadeIn 5.5s ease-out forwards;
}

@keyframes pageLoadFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Matrix Scanlines Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 212, 255, 0.015) 0px,
        rgba(0, 212, 255, 0.015) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9999;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
