:root {
    --primary-color: #6366f1;
    /* Indigo 500 */
    --primary-hover: #4f46e5;
    /* Indigo 600 */
    --text-color: #1f2937;
    /* Gray 800 */
    --bg-color: #f9fafb;
    /* Gray 50 */
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    /* Even Darker Hungarian Flag Gradient: Deep Red (top), White (middle), Deep Green (bottom) */
    background: linear-gradient(180deg, #CD2A3E 0%, #FFFFFF 45%, #FFFFFF 55%, #436F4D 100%);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.main-container {
    /* Removed background and shadow for integrated look */
    background-color: transparent;
    padding: 40px;
    /* border-radius: 24px; */
    /* box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01); */
    text-align: center;
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.animation-wrapper {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Ensure container has size even if empty */
    min-height: 300px;
}

.fallback {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fallback.hidden {
    display: none;
}

.placeholder-box {
    width: 200px;
    height: 200px;
    background-color: #f3f4f6;
    /* Gray 100 */
    border: 2px dashed #d1d5db;
    /* Gray 300 */
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #9ca3af;
    /* Gray 400 */
    font-weight: 600;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.coming-soon {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    /* Gray 700 */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 16px;
}

.footer {
    margin-top: 40px;
}

.contact-email {
    font-size: 0.875rem;
    /* Small text */
    color: #ffffff;
    /* White text */
    font-weight: 500;
    opacity: 0.9;
}