:root {
    --bg-color: #0f172a;
    --accent-soft: #a5b4fc;
    --accent-glow: rgba(165, 180, 252, 0.1);
    --text-color: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

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

/* Atmospheric Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    animation: breathe 20s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #312e81 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #1e1b4b 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #2e1065 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes breathe {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    33% { transform: scale(1.1) translate(30px, -30px); opacity: 0.5; }
    66% { transform: scale(0.9) translate(-20px, 40px); opacity: 0.4; }
}

.container {
    padding: 3rem;
    border-radius: 40px; /* Rounder corners */
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 1000px;
    width: 90%;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

h1 {
    font-size: 3rem;
    font-weight: 400; /* Lighter weight for relaxation */
    letter-spacing: 0.05em;
    color: var(--accent-soft);
    text-shadow: 0 0 20px var(--accent-glow);
    text-align: center;
    opacity: 0.8;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: contrast(0.95) saturate(0.95); /* Soften the video slightly */
}

/* Slow, gentle pulse */
.container {
    animation: fadeIn 2s ease-out, gentleFloat 8s ease-in-out infinite;
}

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

