* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #b8ccff 0%, #e0c4f0 100%);
    font-family: Arial, sans-serif;
    padding: 24px;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.coming-soon {
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
    letter-spacing: 2px;
}

.coming-soon s {
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.coming-soon s::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 0.15em;
    background: rgba(255, 255, 255, 0.95);
}

.image-container {
    width: 85vw;
    height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.image-container img {
    width: 100%;
    height: 85%;
    min-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.tagline {
    font-size: 2rem;
    color: black;
    font-weight: 500;
    padding-top: 5px;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    margin-top: 10px;
}
.newsletter-form input,
.newsletter-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}
.newsletter-form textarea {
    min-height: 80px;
    resize: vertical;
}
.newsletter-form button {
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    background: #4f46e5;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.newsletter-form button:hover {
    background: #3730a3;
}
.copyright {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.error-page {
    gap: 16px;
    max-width: 640px;
}

.error-eyebrow {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #3f3cbb;
}

.error-code {
    font-size: 5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    line-height: 1;
}

.error-title {
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.error-message {
    font-size: 1.05rem;
    color: #2f2f2f;
    max-width: 520px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.error-button,
.error-link {
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 20px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.error-button {
    background: #4f46e5;
    color: white;
}

.error-link {
    background: rgba(255, 255, 255, 0.7);
    color: #1f2937;
}

.error-button:hover,
.error-link:hover {
    transform: translateY(-2px);
}

.error-logo {
    width: min(220px, 60vw);
    margin-top: 8px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}
