
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    position: relative;
    cursor: none;
}

/* Custom cursor */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 70%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}


/* Main container */
.container {
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.content {
    animation: fadeInUp 1.5s ease-out;
}


/* Logo styling */
.logo {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 0.9;
}

.logo:hover {
    transform: scale(1.02);
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
    letter-spacing: -0.01em;
}


/* Subtitle styling */
.subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeIn 2s ease-out 0.8s both;
}


/* Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 2rem;
    }
    
    .subtitle {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 4rem;
    }
    
    .description {
        font-size: 1rem;
    }
}
