:root {
    --primary-purple: #a712e7;
    --dark-bg: #232334;
    --text-color: #ffffff;
    --text-muted: #8b8b9e;
}

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

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    padding: 1rem;
}

/* Subtle background gradient to add depth */
body::before {
    content: '';
    position: absolute;
    width: 150vw;
    height: 150vh;
    background: radial-gradient(circle at center, rgba(167, 18, 231, 0.05) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    animation: breathe 8s ease-in-out infinite alternate;
}

.container {
    max-width: 800px;
    width: 100%;
    z-index: 1;
}

.hero-title {
    font-size: clamp(5rem, 15vw, 10.5rem);
    font-weight: 800;
    letter-spacing: 0.1em; /* Increased spacing for minimal look */
    line-height: 1;
    margin-bottom: 2rem;
    position: relative;
    background: linear-gradient(135deg, #fff 20%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 20px rgba(167, 18, 231, 0.5));
    animation: glow-pulse 4s ease-in-out infinite alternate;
    user-select: none;
}

/* The halo effect behind the text */
.hero-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(167, 18, 231, 0.15) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.6;
    border-radius: 50%;
    filter: blur(20px);
    animation: halo-pulse 4s ease-in-out infinite alternate;
}

.tagline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(20px);
    
    background: linear-gradient(
        110deg,
        var(--text-muted) 0%,
        var(--text-muted) 35%,
        var(--primary-purple) 50%,
        var(--text-muted) 65%,
        var(--text-muted) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    
    animation: 
        fade-up 1.5s ease-out 0.5s forwards,
        shine 6s linear 2s infinite;
}

/* Animations */
@keyframes shine {
    to {
        background-position: -200% center;
    }
}

@keyframes halo-pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
        filter: blur(15px);
    }
    100% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.1);
        filter: blur(25px);
    }
}

@keyframes glow-pulse {
    0% {
        filter: drop-shadow(0 0 15px rgba(167, 18, 231, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 35px rgba(167, 18, 231, 0.8));
    }
}

@keyframes breathe {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.4; }
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries for better mobile handling */
@media (max-width: 600px) {
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    .tagline {
        padding: 0 1rem;
        line-height: 1.6;
    }
}
