:root {
    --primary: #d4af37; /* Gold */
    --primary-dark: #b5952f;
    --background: #0f172a; /* Slate 900 */
    --surface: rgba(30, 41, 59, 0.7); /* Slate 800 with opacity */
    --text-main: #f8fafc; /* Slate 50 */
    --text-muted: #cbd5e1; /* Slate 300 */
    --accent: #e53e3e; /* Red 500 */
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--background);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
    perspective: 1000px;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 10s ease-in-out infinite alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.15);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(229, 62, 62, 0.1);
    bottom: -15%;
    right: -15%;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.thread {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    height: 1px;
    width: 200%;
    animation: flow 10s linear infinite;
    transform-origin: left;
}

.thread-1 { top: 20%; transform: rotate(15deg); animation-duration: 15s; }
.thread-2 { top: 60%; transform: rotate(-10deg); animation-duration: 20s; animation-delay: -5s; left: -50%; }
.thread-3 { top: 80%; transform: rotate(5deg); animation-duration: 25s; animation-delay: -10s; }

@keyframes flow {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: var(--surface);
    text-align: center;
    animation: fadeIn 1s ease-out forwards;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

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

header {
    margin-bottom: 3rem;
}

.logo {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.needle {
    font-size: 2.5rem;
    animation: sew 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes sew {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(15deg); }
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.25rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(229, 62, 62, 0.1);
    color: var(--accent);
    border: 1px solid rgba(229, 62, 62, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(229, 62, 62, 0.1);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-inline: auto;
}

.notify-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.notify-section p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.notify-form {
    display: flex;
    gap: 0.5rem;
    max-width: 450px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.notify-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.notify-form button {
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--primary) 0%, #eab308 100%);
    color: var(--background);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.notify-form button:active {
    transform: translateY(0);
}

footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .container {
        padding: 2rem;
        width: 95%;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form button {
        width: 100%;
    }
}
