body{
    min-height:100vh;
    margin:0;
    font-family: "Anuphan", "Segoe UI", sans-serif;
    color:#fff;
	
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	
    /* 🌌 Space Background */
    background:
        radial-gradient(circle at 20% 20%, #2b1b5a 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, #1b2a5a 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, #120a2a 0%, transparent 50%),
        linear-gradient(180deg, #070812, #0b0f1e);
}

/* container */
.main-container{
    max-width:760px;
    margin:auto;
    padding-top:50px;
}

/* 🌌 GLASS CARD (space premium) */
.glass-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(168, 85, 247, 0.18);

    border-radius:24px;
    padding:32px;

    backdrop-filter: blur(18px);

    box-shadow:
        0 0 40px rgba(139, 92, 246, 0.12),
        0 20px 60px rgba(0,0,0,0.45);

    animation: fadeIn .4s ease-in;
}

/* ✨ Titles */
.hero-title{
    font-size:34px;
    font-weight:700;
    color:#ffffff;
    letter-spacing:0.5px;
}

.hero-sub{
    color: rgba(255,255,255,0.75);
    margin-top:10px;
    font-size:15px;
    line-height:1.6;
}

/* 🌌 THAID BOX (highlight primary action) */
.thaid-box{
    margin-top:25px;
    text-align:center;
    padding:30px;

    border-radius:20px;

    background:
        linear-gradient(
            135deg,
            rgba(168,85,247,0.15),
            rgba(59,130,246,0.10)
        );

    border: 1px solid rgba(168,85,247,0.25);
}

/* 🔵 Primary Button (ThaiD) */
.btn-thaid{
    display:block;
    width:100%;
    padding:16px;

    border-radius:14px;

    font-size:17px;
    font-weight:600;

    color:#fff;
    text-decoration:none;

    background: linear-gradient(135deg, #7c3aed, #2563eb);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 10px 30px rgba(124,58,237,0.25);

    transition: all .25s ease;
}

.btn-thaid:hover{
    transform: translateY(-2px);
    box-shadow:
        0 15px 40px rgba(124,58,237,0.35);
}

/* divider */
.divider{
    text-align:center;
    margin:30px 0;
    color: rgba(255,255,255,0.45);
    font-size:13px;
}

/* input */
.form-control{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(168,85,247,0.18);
    color:#fff;
    border-radius:12px;
}

.form-control:focus{
    background: rgba(255,255,255,0.09);
    border-color: rgba(168,85,247,0.45);
    box-shadow: 0 0 0 0.2rem rgba(124,58,237,0.15);
    color:#fff;
}

/* label */
label{
    margin-bottom:8px;
    font-weight:600;
    color: rgba(255,255,255,0.85);
}

/* secondary button */
.btn-search{
    width:100%;
    border:none;
    padding:14px;
    border-radius:14px;

    color:#fff;

    background: linear-gradient(135deg, #9333ea, #3b82f6);

    box-shadow: 0 10px 25px rgba(59,130,246,0.15);

    transition: all .25s ease;
}

.btn-search:hover{
    transform: translateY(-1px);
    box-shadow: 0 15px 35px rgba(59,130,246,0.25);
}

/* headings */
h1, h2, h3{
    letter-spacing:0.3px;
    font-weight:600;
}

/* 🌌 FOOTER (space minimal premium) */
.footer-soft{
    margin-top:60px;
    padding:30px 0;
    text-align:center;
    color:rgba(255,255,255,0.6);
}

.footer-inner{
    max-width:760px;
    margin:auto;

    padding:18px 24px;

    border-radius:16px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(168,85,247,0.15);

    backdrop-filter: blur(12px);
}

.footer-title{
    font-size:15px;
    font-weight:600;
    color:#fff;
}

.footer-sub{
    font-size:13px;
    opacity:0.7;
    margin-top:3px;
}

.footer-line{
    height:1px;
    background: rgba(168,85,247,0.15);
    margin:12px 0;
}

.footer-meta{
    font-size:12px;
    opacity:0.55;
    line-height:1.6;
}

/* ✨ animation */
@keyframes fadeIn{
    from {opacity:0; transform:translateY(10px);}
    to {opacity:1; transform:translateY(0);}
}

.manual-toggle{
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 13px;

    text-decoration: underline;
    text-underline-offset: 3px;

    transition: all .2s ease;
}

.manual-toggle:hover{
    color: rgba(255,255,255,0.9);
    transform: translateY(-1px);
}

/* ==========================
   SELECT DARK MODE
========================== */

.form-select{
    background-color: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(168,85,247,0.18);
    color:#fff !important;
}

.form-select:focus{
    background-color: rgba(255,255,255,.08) !important;
    color:#fff !important;
}

/* Dropdown List */

.form-select option{
    background:#1a1638;
    color:#ffffff;
}

/* Firefox */

select{
    color:#fff;
    background-color:rgba(255,255,255,.06);
}

/* Arrow Color */

.form-select{
    background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6'/%3E%3C/svg%3E");
}
.schedule-hint{
    display:inline-block;

    margin-top:12px;
    padding:10px 18px;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        rgba(168,85,247,.25),
        rgba(59,130,246,.20)
    );

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    font-weight:600;

    font-size:clamp(
        12px,
        2vw,
        15px
    );

    text-align:center;

    box-shadow:
        0 0 20px rgba(168,85,247,.25);

    backdrop-filter:blur(10px);
}
@media (max-width:576px){

    .schedule-hint{

        width:100%;

        padding:12px;

        border-radius:14px;

        font-size:14px;
    }

}
.schedule-image{
    width:100%;
    height:auto;

    border-radius:16px;

    transition:.3s;
}

.schedule-image:hover{
    transform:scale(1.01);
}
.info-link{
    color:#ffd166;
    font-weight:600;
    text-decoration:none;
    word-break:break-word;
}

.info-link:hover{
    color:#ffffff;
    text-decoration:underline;
}