/* Base Reset & Typography */
html {
    scroll-behavior: smooth;
}

/* Glassmorphism Components */
.glass-nav {
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Interaction - Spotlight Mask */
#hero-texture {
    /* Initial state handled in HMTL classes */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

/* Form Styles - Focus states (base styles moved to HTML) */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

/* Dashed Line for Diagram */
.dashed-line {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 10px 1px;
    background-repeat: repeat-x;
    height: 1px;
    background-color: transparent !important;
}