:root {
    --rs-green: #009b3a;
    --rs-red: #d40000;
    --rs-yellow: #fdf000;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: white;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Fluid Mesh Gradient Background */
.mesh-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.6;
}

.blob {
    position: absolute;
    width: 50vmax;
    height: 50vmax;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: blur(80px);
    animation: move 25s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 {
    background: var(--rs-green);
    top: -20%;
    left: -10%;
    opacity: 0.7;
}

.blob-2 {
    background: var(--rs-red);
    bottom: -20%;
    right: -10%;
    animation-duration: 30s;
    animation-delay: -5s;
    opacity: 0.6;
}

.blob-3 {
    background: var(--rs-yellow);
    top: 40%;
    left: 40%;
    width: 35vmax;
    height: 35vmax;
    animation-duration: 35s;
    animation-delay: -10s;
    opacity: 0.8;
}

@keyframes move {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(10%, 15%) scale(1.1) rotate(60deg);
    }
    66% {
        transform: translate(-5%, 10%) scale(0.9) rotate(-60deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

/* Content Styling */
.container {
    text-align: center;
    z-index: 10;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-out;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.status-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer {
    position: fixed;
    bottom: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

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

/* Responsive */
@media (max-width: 640px) {
    .content-card {
        padding: 2rem;
        margin: 1rem;
    }
    .title {
        font-size: 2.5rem;
    }
    .logo {
        width: 150px;
    }
}
