:root {
    --bg-color: #0a0a0f;
    --text-color: #ffffff;
    --accent-1: #ff2a5f;
    --accent-2: #00d2ff;
    --accent-3: #8a2be2;
}

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

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

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    perspective: 1000px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 4rem 5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    text-align: center;
    animation: float 6s ease-in-out infinite;
    max-width: 90%;
}

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

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    gap: clamp(0.4rem, 1.5vw, 1rem);
    justify-content: center;
    flex-wrap: wrap;
    line-height: 1.2;
}

.word {
    opacity: 0;
    transform: translateY(30px);
    animation: revealWord 0.8s cubic-bezier(0.2, 1, 0.2, 1) forwards;
}

.word:nth-child(1) { animation-delay: 0.1s; }
.word:nth-child(2) { animation-delay: 0.2s; }
.word:nth-child(3) { animation-delay: 0.3s; background: linear-gradient(135deg, var(--accent-2), var(--accent-3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.word:nth-child(4) { animation-delay: 0.4s; }
.word:nth-child(5) { animation-delay: 0.5s; background: linear-gradient(135deg, var(--accent-1), #ff7b00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

@keyframes revealWord {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    opacity: 0;
    animation: revealSubtitle 1s ease forwards 1s;
    letter-spacing: 0.02em;
}

@keyframes revealSubtitle {
    to {
        opacity: 1;
    }
}

/* Background Gradients */
.bg-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
    animation: pulse 10s ease-in-out infinite alternate;
}

.bg-gradient-1 {
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(138,43,226,0.2) 0%, rgba(10,10,15,0) 70%);
    animation-delay: 0s;
}

.bg-gradient-2 {
    bottom: -20%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(0,210,255,0.15) 0%, rgba(10,10,15,0) 70%);
    animation-delay: -5s;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.6; }
}
