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

        body {
            font-family: 'Noto Sans TC', sans-serif;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://unsplash.com') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            overflow: hidden;
        }

        .container {
            text-align: center;
            background: rgba(23, 25, 134, 0.5);
           
            
            padding: 50px 30px;
            border-radius: 20px;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            border: 1px solid rgba(255, 255, 255, 0.18);
            width: 90%;
            max-width: 600px;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        h1 span {
            color: #FFB3BA;
        }

        p.subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.6;
        }

        .trip-details {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 35px;
        }

        .trip-details div {
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: bold;
        }

        .countdown {
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .countdown span {
            font-size: 1.5rem;
            color: #FFDFD3;
            font-weight: bold;
        }

        .enter-btn {
            display: inline-block;
            text-decoration: none;
            background-color: #BAE1FF;
            color: #333;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .enter-btn:hover {
            background-color: #BAFFC9;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        /* 響應式調整 */
        @media (max-width: 600px) {
            h1 { font-size: 1.8rem; }
            p.subtitle { font-size: 1rem; }
            .trip-details { flex-direction: column; gap: 10px; }
        }
