:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #D4AF37; /* Soft Gold */
    --hover-color: #f1f1f1;
    --cursor-size: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom Cursor */
}

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

/* Custom Cursor */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

#cursor-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(100, 100, 255, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

/* Background Canvas */
.canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at bottom center, #1a1a2e 0%, #000000 70%);
}

.container {
    text-align: center;
    z-index: 10;
    padding: 20px;
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    color: #ccc;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Hero Text */
.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    color: #e0e0e0; /* Slightly distinct white */
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Form */
.notify-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.notify-form input {
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
    width: 300px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
    cursor: text; /* Restore text cursor for input */
}

.notify-form input:focus {
    border-color: rgba(255,255,255,0.5);
}

.notify-form button {
    padding: 14px 24px;
    border-radius: 8px;
    border: none;
    background: white;
    color: black;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.notify-form button:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #555;
    z-index: 10;
}

.footer a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.footer a:hover {
    color: white;
}

.legal-links {
    margin-top: 8px;
}

.separator {
    margin: 0 8px;
    color: #333;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .notify-form {
        flex-direction: column;
        align-items: center;
    }
    
    .notify-form input {
        width: 100%;
    }
    
    .notify-form button {
        width: 100%;
    }
}
