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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #0A0A0B;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    position: relative;
}

/* Typography */
h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    color: #0A0A0B;
    line-height: 1.1;
}

a {
    color: #4A4A4A;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 300;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #8B9DC3;
    transition: width 0.3s ease;
}

a:hover {
    color: #8B9DC3;
}

a:hover::after {
    width: 100%;
}

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

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .orb {
        animation: none;
    }
    
    .container {
        animation: none;
    }
    
    a {
        transition: none;
    }
    
    a::after {
        transition: none;
    }
}