:root {
    --slate: #0f172a;
    --slate-light: #1e293b;
    --gold: #d4af37;
    --gold-bright: #f1c40f;
    --text-light: #f8fafc;
    --text-dim: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--slate);
    color: var(--text-light);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('coming_soon_bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.4;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--slate) 100%);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    animation: fadeInDown 1.2s ease-out;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: auto;
}

.logo-myrh {
    max-height: 100px; /* Increased from 70px */
}

.logo-white {
    max-height: 70px;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.logo:hover {
    transform: scale(1.05) translateY(-5px);
}

.separator {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.content {
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.status-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 9999px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 30%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

p {
    font-size: 1.2rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.loading-indicator {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 1.8s infinite ease-in-out;
}

.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }

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

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
    50% { opacity: 1; transform: scale(1.3); box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .logos { 
        flex-direction: column; 
        gap: 2rem; 
        margin-bottom: 3rem; 
    }
    .logo-myrh { max-height: 80px; }
    .logo-white { max-height: 50px; }
    .separator { 
        width: 80px; 
        height: 1px; 
        background: linear-gradient(to right, transparent, var(--gold), transparent);
        opacity: 0.3;
    }
}
