:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #d4af37; /* Metallic gold */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Cinzel', serif;
}

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

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

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 1) 70%);
    z-index: -1;
}

.container {
    max-width: 800px;
    width: 90%;
    text-align: center;
    z-index: 1;
}

.logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 0.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    animation: fadeInDown 1.5s ease-out;
}

.tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0.8;
    animation: fadeInUp 1.2s ease-out;
}

.status {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    animation: fadeInUp 1.4s ease-out;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #cccccc;
    animation: fadeInUp 1.6s ease-out;
}

.newsletter {
    display: flex;
    justify-content: center;
    gap: 10px;
    animation: fadeInUp 1.8s ease-out;
}

.newsletter input {
    padding: 12px 20px;
    width: 300px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-family: var(--font-primary);
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter input:focus {
    border-color: var(--accent-color);
}

.newsletter button {
    padding: 12px 30px;
    background: var(--accent-color);
    color: black;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
}

.newsletter button:hover {
    transform: translateY(-2px);
    background: #c19b2e;
}

footer {
    position: absolute;
    bottom: 40px;
    width: 100%;
    left: 0;
    text-align: center;
    animation: fadeIn 2s ease-in;
}

.social-links {
    margin-bottom: 15px;
}

.social-links span {
    margin: 0 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    cursor: pointer;
    color: #888;
    transition: color 0.3s ease;
}

.social-links span:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.7rem;
    color: #555;
    letter-spacing: 0.1rem;
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 600px) {
    .logo { font-size: 2rem; letter-spacing: 0.4rem; }
    .status { font-size: 1.8rem; }
    .newsletter { flex-direction: column; align-items: center; }
    .newsletter input { width: 100%; }
}
