:root {
    --bg-color: #03070a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --font-main: 'Zen Kaku Gothic New', 'Outfit', sans-serif;
    --font-heading: 'Poiret One', sans-serif;

    /* Colors inspired by the image */
    --color-cyan: #0085a0;
    --color-blue: #1e3983;
    --color-deep: #101e33;
    --color-glow: rgba(0, 212, 255, 0.4);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Noise texture overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 5;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Background Animated Blobs - Liquid style */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(50px) saturate(1);
    background: radial-gradient(circle at 50% 50%, #081628 0%, #020408 100%);
}

.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    mix-blend-mode: color-dodge;
    opacity: 0.5;
    animation: liquid 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 70vw;
    height: 70vw;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    top: -10%;
    left: -10%;
    animation-duration: 15s;
}

.blob-2 {
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, var(--color-blue), transparent);
    bottom: -15%;
    right: -10%;
    animation-duration: 25s;
    opacity: 0.35;
}

.blob-3 {
    width: 60vw;
    height: 60vw;
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    top: 20%;
    left: 30%;
    animation-duration: 20s;
    opacity: 0.25;
}

@keyframes liquid {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    33% {
        transform: translate(30px, 50px) rotate(120deg) scale(1.1);
        border-radius: 60% 40% 30% 70% / 50% 30% 70% 50%;
    }

    66% {
        transform: translate(-20px, 30px) rotate(240deg) scale(0.9);
        border-radius: 30% 70% 40% 60% / 70% 50% 30% 50%;
    }

    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

/* Minimal Layout */
.hero {
    text-align: center;
    z-index: 10;
}

.domain-name {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 0.8rem;
    color: #fff;
    text-shadow: 0 0 30px var(--color-glow);
}

.phrase {
    font-family: var(--font-main);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 2s 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
        filter: blur(5px);
    }

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