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

body {
    font-family: 'Georgia', serif;
    background: 
        radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 100%),
        url('tree-of-life.png') no-repeat center center fixed;
    background-size: cover;
    color: #f0e68c;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    text-align: center;
}

.container {
    position: relative;
    padding: 0 1rem;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.coming-soon {
    font-size: clamp(2rem, 8vw, 5rem);
    letter-spacing: 0.1em;
    margin-top: 0;
    opacity: 0;
    animation: fadeIn 1s forwards, pulse 2s infinite alternate;
    text-transform: uppercase;
}

.logo {
    font-size: clamp(1rem, 4vw, 2rem);
    margin-top: 0.25rem;
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.email-capture {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    opacity: 0.95;
}

.email-capture input {
    padding: 12px 16px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    min-width: 250px;
}

.email-capture button {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background-color: #f0e68c;
    color: #1a1a1a;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

footer {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75em;
    color: #f0e68c;
    opacity: 0.7;
    z-index: 2;
    text-align: center;
    max-width: 90%;
    line-height: 1.2;
}

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

@keyframes pulse {
    0% { text-shadow: 0 0 15px #f0e68c; }
    100% { text-shadow: 0 0 30px #f0e68c; }
}
