:root {
    --primary-bg: #03001C;
    --card-bg: rgba(255, 255, 255, 0.05);
    --accent-color: #7B2CBF;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --blob-gradient: radial-gradient(circle, var(--accent-color) 0%, rgba(123, 44, 191, 0.3) 50%, transparent 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

/* Background Blobs */
.background-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(80px);
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--blob-gradient);
    border-radius: 50%;
    opacity: 0.5;
    animation: move 20s infinite alternate;
}

.blob-1 { top: -100px; left: -100px; background: radial-gradient(circle, #5A189A 0%, transparent 70%); }
.blob-2 { bottom: -100px; right: -100px; background: radial-gradient(circle, #3C096C 0%, transparent 70%); animation-delay: -5s; }
.blob-3 { top: 50%; left: 50%; width: 600px; height: 600px; background: radial-gradient(circle, #240046 0%, transparent 70%); transform: translate(-50%, -50%); animation: pulse 15s infinite; }

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(20%, 20%); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Glass Card */
.container {
    perspective: 1000px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 4rem 6rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
}

h1 {
    font-size: 7rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a29bfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dot {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
}

p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 400px;
    margin-bottom: 2.5rem;
}

/* Primary Button */
.primary-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.primary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.primary-btn:active {
    transform: translateY(0);
}

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

.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 { font-size: 4rem; }
    .glass-card { padding: 3rem 2rem; width: 90vw; }
    p { font-size: 1.1rem; }
}
