:root {
    --bg-color: hsl(220, 15%, 8%);
    --text-color: hsl(220, 15%, 95%);
    --primary-color: hsl(230, 80%, 65%);
    --accent-color: hsl(260, 80%, 70%);
    --card-bg: hsl(220, 15%, 12%);
    --muted-text: hsl(220, 15%, 65%);
    --font-headline: 'Belleza', sans-serif;
    --font-body: 'Alegreya', serif;
}

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

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

/* Magic Orb Animation */
.magic-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary-color) 0%, var(--accent-color) 30%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0.08;
    filter: blur(60px);
    animation: pulse 10s infinite alternate ease-in-out;
    z-index: -1;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.05;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    z-index: 1;
}

/* Header / Logo */
.logo {
    width: 180px;
    height: auto;
    margin-bottom: 3rem;
    opacity: 0.9;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content */
h1 {
    font-family: var(--font-headline);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtext {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--muted-text);
    margin-bottom: 3rem;
}

/* Notify Form / Contact Button */
.notify-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    font-family: var(--font-headline);
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(124, 77, 255, 0.4);
}

/* Footer */
footer {
    font-size: 0.9rem;
    color: var(--muted-text);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .magic-orb {
        width: 100vw;
        height: 100vw;
    }

    .contact-btn {
        width: 100%;
        max-width: 300px;
    }
}
