:root {
    --primary-color: #22cac7;
    --secondary-color: #1bf29f;
    --dark-color: #343A40;
    --bg-color: #FDFDFD;
    --text-color: #212529;
    --font-family: 'Kanit', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--dark-color);
    padding: 1rem 0;
    width: 100%;
    z-index: 10;
}

.logo {
    height: 40px;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bg-decoration {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 30px);
    }
}

.content {
    text-align: left;
    max-width: 800px;
}

.message-box h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.message-box p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #6c757d;
}

.until-box {
    background-color: rgba(34, 202, 199, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--dark-color);
    border-radius: 4px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-weight: 400;
}

.pulse {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
    }

    80%,
    100% {
        opacity: 0;
    }
}

footer {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #adb5bd;
}

@media (max-width: 768px) {
    .message-box h1 {
        font-size: 2.5rem;
    }

    .message-box p {
        font-size: 1.2rem;
    }

    .bg-decoration {
        width: 300px;
        height: 300px;
        right: -20%;
    }
}