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

body {
    font-family: 'Spline Sans Mono', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(ellipse at top, #080812 0%, #030304 40%, #000000 100%);
    color: #e0e0e0;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Enhanced cosmic background grid */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 25% 20%, rgba(72, 52, 212, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 75% 80%, rgba(96, 239, 255, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 60% 40%, rgba(138, 43, 226, 0.04) 0%, transparent 70%),
        linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    animation: cosmicMove 30s linear infinite;
    z-index: -2;
}

@keyframes cosmicMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -20px) rotate(0.3deg); }
    100% { transform: translate(60px, 60px) rotate(0.5deg); }
}

/* Add aurora-like light bands */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(120deg, transparent 30%, rgba(72, 52, 212, 0.015) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 40%, rgba(96, 239, 255, 0.02) 60%, transparent 80%),
        radial-gradient(circle at 15% 15%, rgba(255,255,255,0.9) 1px, transparent 2px),
        radial-gradient(circle at 85% 25%, rgba(255,255,255,0.7) 1px, transparent 2px),
        radial-gradient(circle at 30% 80%, rgba(255,255,255,1) 1px, transparent 2px),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.8) 1px, transparent 2px),
        radial-gradient(circle at 50% 40%, rgba(96, 239, 255, 0.9) 1px, transparent 2px),
        radial-gradient(circle at 90% 85%, rgba(255,255,255,0.6) 1px, transparent 2px),
        radial-gradient(circle at 10% 60%, rgba(138, 43, 226, 0.8) 1px, transparent 2px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    animation: auroraFlow 8s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes auroraFlow {
    0% { 
        opacity: 0.6;
        transform: translateX(-10px);
    }
    50% {
        opacity: 1;
        transform: translateX(5px) translateY(-5px);
    }
    100% { 
        opacity: 0.8;
        transform: translateX(10px);
    }
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    z-index: 1;
}

.domain {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #e0e0e0, #60efff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    text-transform: lowercase;
    text-align: left;
    position: relative;
}

.domain::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #60efff, transparent);
    opacity: 0.8;
    animation: underlineGlow 3s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% { 
        opacity: 0.6;
        box-shadow: 0 0 5px rgba(96, 239, 255, 0.3);
    }
    100% { 
        opacity: 1;
        box-shadow: 0 0 15px rgba(96, 239, 255, 0.6);
    }
}

.description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #a0a0a0;
    line-height: 1.6;
    font-weight: 300;
    text-align: left;
}

.role {
    color: #00ff87;
    font-weight: 400;
}

.company-link {
    color: #60efff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.company-link:hover {
    border-bottom-color: #60efff;
    filter: brightness(1.2);
}

.contact-intro {
    color: #f5f5f5;
    font-size: 1rem;
    margin-block: 0.5rem 0.25rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    text-align: left;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #808080;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.social-link:hover {
    color: #b0b0b0;
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-1px);
}

.social-link svg {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    width: 16px;
    height: 16px;
}

.social-link:hover svg {
    opacity: 0.8;
}

/* Enhanced floating particles - now more star-like */
.particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: cosmicFloat 20s infinite;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}

.particle:nth-child(2) { 
    left: 20%; 
    animation-delay: -5s; 
    background: rgba(96, 239, 255, 0.8);
    box-shadow: 0 0 4px rgba(96, 239, 255, 0.6);
}
.particle:nth-child(3) { 
    left: 40%; 
    animation-delay: -10s;
    width: 2px;
    height: 2px;
}
.particle:nth-child(4) { 
    left: 60%; 
    animation-delay: -2s; 
    background: rgba(72, 52, 212, 0.7);
    box-shadow: 0 0 3px rgba(72, 52, 212, 0.5);
}
.particle:nth-child(5) { 
    left: 80%; 
    animation-delay: -8s;
    width: 1.5px;
    height: 1.5px;
}

@keyframes cosmicFloat {
    0%, 100% { 
        transform: translateY(100vh) translateX(0px) scale(0);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        transform: translateY(-10vh) translateX(150px) scale(1);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-intro {
        flex-direction: column;
        gap: 1rem;
    }
}

.location {
    color: #ffd580;
    font-weight: 500;
}

.links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-signature {
    text-align: center;
    font-size: 0.85rem;
    color: #e0e0e0;
    opacity: 0.25;
    margin-top: 0.5rem;
    letter-spacing: 0.04em;
    user-select: none;
}