:root {
    --navy: #eef5f4;
    --mint: #2cccb0;
    --mint-hover: #22a38c;
    --bg-main: #0b1528;
    --bg-alt: #132240;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    background-color: #0b1528;
    overscroll-behavior: none; 
}

body { 
    font-family: 'Poppins', sans-serif; 
    color: var(--text-main); 
    background: linear-gradient(135deg, #070e1c 0%, #0b1528 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto; 
    overscroll-behavior: none;
}

.container { 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 0 24px; 
    width: 100%; 
}

.text-center { text-align: center; }

.accent { 
    color: var(--mint); 
    text-decoration: none; 
    font-weight: 600; 
    transition: var(--transition);
}

.accent:hover { 
    color: #ffffff; 
    text-shadow: 0 0 8px rgba(44, 204, 176, 0.5); 
}

.top-bar { padding: 20px 0; width: 100%; }

.bar-container { display: flex; justify-content: flex-end; }

.language-switcher { 
    background: rgba(255,255,255,0.05); 
    padding: 6px 12px; 
    border-radius: 30px; 
    display: flex; 
    gap: 4px; 
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.language-switcher button { 
    background: none; 
    border: none; 
    font-family: inherit; 
    font-weight: 600; 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    padding: 6px 12px; 
    border-radius: 20px; 
    cursor: pointer; 
    transition: var(--transition); 
}

.language-switcher button.active, 
.language-switcher button:hover { 
    background-color: rgba(255,255,255,0.1); 
    color: var(--mint); 
}

.coming-soon-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.logo-container { margin-bottom: 40px; }
.logo-container img { height: 60px; object-fit: contain; }

.content-box { margin-bottom: 50px; min-height: 180px; }
.content-box h1 { 
    font-size: 3.5rem; 
    line-height: 1.2; 
    margin-bottom: 20px; 
    font-weight: 700; 
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-box p { 
    font-size: 1.2rem; 
    color: var(--text-muted); 
    max-width: 650px; 
    margin: 0 auto; 
    line-height: 1.8; 
}

.notify-form { max-width: 500px; margin: 0 auto 50px; }

.input-group { 
    display: flex; 
    background: var(--bg-alt); 
    border: 1px solid var(--border-color); 
    border-radius: 30px; 
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
    height: 56px;
    align-items: center;
}

.input-group:focus-within { 
    border-color: var(--mint); 
    box-shadow: 0 0 0 4px rgba(44, 204, 176, 0.15); 
}

.input-group input { 
    flex: 1; 
    background: transparent; 
    border: none; 
    padding: 10px 20px; 
    color: var(--text-main); 
    font-family: inherit; 
    font-size: 1rem; 
    outline: none;
}

.input-group input::placeholder { color: #475569; }

.notify-btn { 
    background-color: var(--mint); 
    color: #0b1528; 
    border: none; 
    padding: 12px 28px; 
    border-radius: 24px; 
    font-weight: 600; 
    font-size: 1rem; 
    cursor: pointer; 
    transition: var(--transition); 
}

.notify-btn:hover { 
    background-color: var(--mint-hover); 
    transform: scale(1.02); 
}

.spam-note { 
    display: block; 
    margin-top: 16px; 
    color: #475569; 
    font-size: 0.85rem; 
}

.contact-info { 
    margin-top: 40px; 
    font-size: 1.1rem; 
    color: var(--text-muted); 
}

.cs-footer { 
    text-align: center; 
    padding: 20px; 
    color: #334155; 
    font-size: 0.9rem; 
}

@media (max-width: 600px) {
    .content-box h1 { font-size: 2.2rem; } 
    .content-box p { font-size: 1rem; padding: 0 10px; }
    
    .input-group { 
        flex-direction: column; 
        border-radius: 16px; 
        background: transparent; 
        border: none; 
        box-shadow: none; 
        gap: 12px; 
        padding: 0;
        height: auto; 
    }
    
    .input-group:focus-within { 
        box-shadow: none; 
        border-color: transparent;
    }
    
    .input-group input { 
        width: 100%;
        background: var(--bg-alt); 
        border-radius: 12px; 
        padding: 15px; 
        border: 1px solid var(--border-color); 
        text-align: center;
    }
    
    .notify-btn { 
        border-radius: 12px; 
        padding: 15px; 
        width: 100%; 
    }
}