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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#home {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spotlight {
    position: absolute;
    height:100%;
    /*width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(159, 255, 255, 0.5) 0%, rgba(0, 255, 255, 0.1) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    z-index: 10;*/
}

.content {
    position: relative;
    z-index: 20;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 2rem;
}

.logo {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background-clip: text;
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    font-family: 'Alata', sans-serif; 
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ffffffec;
}

.description {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.8;
    color: #ffffffec;
}

.pulse {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}


.revealed {
    color: rgba(0, 255, 255, 0.7) !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}


body {
    background: radial-gradient(ellipse at center, #0f0f23 0%, #000000 100%);
    height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: #121323;
    color: white;
    scroll-behavior: smooth;
}

.gradient-text {
    background: linear-gradient(135deg, #C60BF5 0%, #528BF6 50%, #25E5F7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-border {
    position: relative;
    border-radius: 0.5rem;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #C60BF5 0%, #528BF6 50%, #25E5F7 100%);
    z-index: -1;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C60BF5 0%, #25E5F7 100%);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}