/* ===== SOULAANS — Minimal Coming Soon ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #A07B2B;
    --crimson: #CC2200;
    --black: #0A0A0A;
    --dark: #111111;
    --text: #B8B8B8;
    --text-dim: #666666;
}

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

/* Particle Canvas Background */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Radial glow behind content */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 520px;
    width: 100%;
    animation: fadeUp 1.2s ease-out;
}

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

/* Logo */
.logo-mark {
    margin-bottom: 1.5rem;
}

.logo-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(201,168,76,0.3));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(201,168,76,0.3)); }
    50%      { filter: drop-shadow(0 0 35px rgba(201,168,76,0.5)); }
}

/* Brand Name */
.brand {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(201,168,76,0.2);
}

/* Divider */
.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 1.5rem;
}

/* Tagline */
.tagline {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #E0E0E0;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.sub {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

/* Email Form */
.notify-form {
    display: flex;
    gap: 0;
    max-width: 400px;
    margin: 0 auto 1rem;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.2);
    transition: border-color 0.3s;
}

.notify-form:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(201,168,76,0.1);
}

.notify-form input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    background: rgba(255,255,255,0.03);
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    outline: none;
}

.notify-form input::placeholder {
    color: var(--text-dim);
}

.notify-form button {
    padding: 0.85rem 1.5rem;
    background: var(--gold-dark);
    color: #fff;
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.notify-form button:hover {
    background: var(--gold);
    color: var(--black);
}

.status {
    font-size: 0.8rem;
    color: var(--gold);
    min-height: 1.2em;
    margin-bottom: 2rem;
}

/* Footer */
.social-links {
    padding-top: 1rem;
}

.copyright {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
    .brand {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .notify-form {
        flex-direction: column;
        border-radius: 6px;
    }
    
    .notify-form button {
        border-radius: 0 0 6px 6px;
    }
    
    .logo-img {
        width: 70px;
        height: 70px;
    }
}
