:root {
    --color-bg: #fdfbf7;
    --color-text: #333333;
    --color-text-light: #666666;
    --blob-1: rgba(255, 218, 224, 0.7); /* Soft pink */
    --blob-2: rgba(212, 235, 255, 0.7); /* Pale ice blue */
    --blob-3: rgba(245, 230, 255, 0.7); /* Pale lavender */
    --glass-bg: rgba(255, 255, 255, 0.35);
    --glass-border: rgba(255, 255, 255, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Hide scrollbars for the immersive feel */
    position: relative;
}

/* --- Animated Background Blobs --- */
.blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    filter: blur(80px); /* Deep blur for the liquid effect */
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
    opacity: 0.8;
}

.blob-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--blob-1) 0%, rgba(255,255,255,0) 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--blob-2) 0%, rgba(255,255,255,0) 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-3 {
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, var(--blob-3) 0%, rgba(255,255,255,0) 70%);
    top: 20%;
    left: 40%;
    animation-delay: -10s;
    animation-duration: 22s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(5%, 10%) scale(1.05);
    }
    100% {
        transform: translate(-5%, 5%) scale(0.95);
    }
}

/* --- Glassmorphism Card --- */
.glass-card {
    position: relative;
    z-index: 10;
    width: 80%;
    max-width: 900px;
    height: 70vh;
    min-height: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    padding: 3rem;
    animation: fadeUp 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Minimal Navigation --- */
.minimal-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: auto; /* Push content down */
}

.minimal-nav a {
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.4s ease, transform 0.4s ease;
    position: relative;
}

.minimal-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--color-text);
    transition: width 0.4s ease;
}

.minimal-nav a:hover {
    color: var(--color-text);
    transform: translateY(-2px);
}

.minimal-nav a:hover::after {
    width: 100%;
}

/* --- Main Typography --- */
.content {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}

.title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.1;
    /* Subtle text shadow for depth against background */
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.8);
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
    text-transform: uppercase;
    animation: fadeIn 2s ease 1s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .glass-card {
        width: 90%;
        height: 85vh;
        padding: 2rem;
    }
    .minimal-nav {
        gap: 1.5rem;
    }
}