* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    background: #0b0b0f;
    color: #fff;
    overflow-x: hidden;
}

.motion-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(168,85,247,0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0,180,255,0.15), transparent 40%);
    animation: float 18s ease-in-out infinite alternate;
    filter: blur(60px);
    z-index: -1;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-30px) translateX(20px); }
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.glass {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 40px 24px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(15px);
    animation: fadeUp 1s ease-out forwards;
}

h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -1px;
}

h1 span { color: #a855f7; }

.subtitle {
    margin-top: 12px;
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
}

.description {
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 35px 0;
}

.feature span { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.feature p { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.8); }

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.countdown div {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 12px 4px;
}

.countdown span {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    font-weight: 600;
    display: block;
}

.countdown small { font-size: 0.6rem; opacity: 0.6; }

.launch { margin-top: 25px; font-size: 0.8rem; color: #a855f7; font-weight: 600; }

.lang-switch { position: absolute; top: 20px; right: 20px; }
.lang-switch button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    margin-left: 5px;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.7rem;
    transition: 0.3s;
}
.lang-switch button:hover { background: rgba(255,255,255,0.1); }

html[dir="rtl"] { direction: rtl; }

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

@media (max-width: 400px) {
    .glass { padding: 30px 15px; }
    .features { gap: 20px; }
}
