/* General Styling */
body {
    font-family: 'Kanit', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f4f8; /* สีพื้นหลังโทนฟ้าอ่อน */
    color: #333;
    line-height: 1.6;
    text-align: center;
    background-image: linear-gradient(135deg, #e3f2fd 0%, #cfd8dc 100%);
}

.under-construction-container {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 60px 40px; /* ลดระยะห่างด้านใน */
    max-width: 600px;
    width: 90%;
    margin: 40px auto;
    animation: fadeIn 1.5s ease-out;
    border-top: 5px solid #4a90e2; /* สีน้ำเงินสดใส */
}

.logo {
    margin-bottom: 20px; /* ลดระยะห่าง */
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em; /* ลดขนาด */
    color: #2c3e50; /* สีน้ำเงินเข้ม */
    margin: 0;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.status-message .icon {
    font-size: 4em; /* ลดขนาด */
    display: block;
    margin-bottom: 15px;
    color: #ff9800; /* สีส้ม */
    animation: bounce 2.5s infinite;
}

.status-message h2 {
    font-size: 1.8em; /* ลดขนาด */
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.status-message p {
    font-size: 1.1em; /* ลดขนาด */
    color: #546e7a;
    margin-bottom: 8px;
    font-weight: 400;
}

.en-text {
    font-size: 0.9em; /* ลดขนาด */
    color: #78909c;
    font-style: italic;
    margin-top: -5px;
    margin-bottom: 15px;
    font-weight: 400;
}

.coming-soon {
    font-size: 1.3em; /* ลดขนาด */
    font-weight: 700;
    color: #ff5722; /* สีส้มสดใส */
    animation: pulse 1.5s infinite;
    margin-top: 15px;
}

.contact-info {
    margin-top: 25px; /* ลดระยะห่าง */
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.contact-info p {
    font-size: 1em; /* ลดขนาด */
    margin-bottom: 10px;
    color: #777;
}

.email-link {
    display: inline-block;
    background-color: #4a90e2; /* สีน้ำเงิน */
    color: #ffffff;
    padding: 10px 20px; /* ลดขนาดปุ่ม */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em; /* ลดขนาด */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.email-link:hover {
    background-color: #357bd9;
    transform: translateY(-3px);
}

footer {
    margin-top: 20px;
    padding: 15px; /* ลดระยะห่าง */
    color: #777;
    font-size: 0.8em;
    width: 100%;
    background-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .under-construction-container {
        padding: 40px 20px;
        margin: 20px auto;
    }
    .logo h1 {
        font-size: 2em;
    }
    .status-message h2 {
        font-size: 1.5em;
    }
    .status-message p {
        font-size: 0.9em;
    }
    .en-text {
        font-size: 0.8em;
    }
    .coming-soon {
        font-size: 1.1em;
    }
    .status-message .icon {
        font-size: 3em;
    }
    .email-link {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}