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

:root {
    /* Vibrant color palette - light mode */
    --color-primary: #FF006E;
    --color-secondary: #8338EC;
    --color-accent: #3A86FF;
    --color-success: #06FFA5;
    --color-bg: #FFF;
    --color-text: #1A1A1A;
    --color-text-muted: #666;
}

@media (prefers-color-scheme: dark) {
    :root {
        /* Vibrant colors for dark mode */
        --color-primary: #FF1B8D;
        --color-secondary: #9D4EDD;
        --color-accent: #4CC9F0;
        --color-success: #06FFA5;
        --color-bg: #0A0A0A;
        --color-text: #FFF;
        --color-text-muted: #AAA;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Container */
.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.content {
    animation: fade-in 0.8s ease-out;
}

/* Title */
.title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.fit {
    color: var(--color-primary);
    display: inline-block;
    animation: slide-in-left 0.6s ease-out;
}

.glue {
    color: var(--color-secondary);
    display: inline-block;
    animation: slide-in-right 0.6s ease-out;
}

/* Tagline */
.tagline {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Status badge */
.status {
    margin-bottom: 3rem;
}

.status-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 20px rgb(0 0 0 / 15%);
    animation: pulse 2s ease-in-out infinite;
}

/* Description */
.description {
    max-width: 600px;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
}

.description p {
    margin-bottom: 1.5rem;
}

.description strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgb(0 0 0 / 15%);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgb(131 56 236 / 40%);
    }
}

/* Responsive adjustments */
@media (width <=768px) {
    body {
        padding: 1rem;
    }

    .description {
        font-size: 1rem;
    }
}
