:root {
    /* Color Palette */
    --primary-purple: #8b5cf6;
    --light-purple: #c084fc;
    --dark-purple: #4c1d95;
    --bg-color: #f7f9fc;
    --text-color: #1f2937;
    
    /* Animation Tokens */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
body::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(247, 249, 252, 0) 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

body::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.08) 0%, rgba(247, 249, 252, 0) 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.container {
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 15vw, 8rem);
    letter-spacing: -0.04em;
    color: var(--primary-purple);
    cursor: default;
    
    /* Text Gradient */
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Animation */
    animation: fadeIn 1.2s ease-out forwards, float 6s ease-in-out infinite;
    opacity: 0;
}

/* Transitions and Hovers */
.title:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
    transition: var(--transition);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Media Queries for better responsiveness */
@media (max-width: 640px) {
    .title {
        text-align: center;
    }
}
