/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px; /* ဘေးဘောင်မကပ်အောင် */
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 20px;
    border-radius: 20px;
    width: 100%;
    max-width: 500px; /* ဖုန်းမှာ အရမ်းမကျယ်သွားအောင် */
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

h1 span {
    color: #ffeb3b;
}

p {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* --- Countdown Layout (ဖုန်းအတွက် အဓိကပြင်ဆင်ချက်) --- */
.launch-time {
    display: flex;
    flex-wrap: wrap; /* နေရာမဆန့်ရင် အောက်ဆင်းပေးမယ့် key */
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.launch-time div {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 10px;
    border-radius: 12px;
    flex: 1 1 70px; /* အနည်းဆုံး 70px ထားပြီး အချိုးကျ ကျုံ့ဆန့်လုပ်မယ် */
    max-width: 90px;
}

.launch-time div p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.launch-time div span {
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* --- Input Group (ဖုန်းအတွက် ပြင်ဆင်ချက်) --- */
.input-group {
    display: flex;
    flex-direction: column; /* အပေါ်အောက် ထားခြင်း */
    gap: 10px;
    width: 100%;
}

input {
    padding: 15px;
    border-radius: 30px;
    border: none;
    outline: none;
    text-align: center;
}

button {
    padding: 15px;
    border-radius: 30px;
    border: none;
    background: #ffeb3b;
    color: #333;
    font-weight: bold;
    cursor: pointer;
}

/* --- Screen အကျယ် 400px ထက်ကြီးလျှင် ဘေးတိုက်ပြန်ထားရန် --- */
@media (min-width: 480px) {
    .input-group {
        flex-direction: row;
    }
    input {
        border-radius: 30px 0 0 30px;
        flex: 2;
    }
    button {
        border-radius: 0 30px 30px 0;
        flex: 1;
    }
}

