@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Montserrat:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    background-color: #000000;
}

.luxury-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(20, 20, 20, 0.9) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.luxury-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.luxury-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.luxury-section {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 2rem;
}

.welcome-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.8em;
    letter-spacing: 0.5em;
    color: #c0c0c0;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.luxury-text {
    font-size: 5.5em;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #d4af37;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

.luxury-text span {
    display: inline-block;
    opacity: 0;
}

.luxury-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2em;
    letter-spacing: 0.1em;
    color: rgba(192, 192, 192, 0.8);
    text-transform: uppercase;
    opacity: 0;
	display: flex;
    flex-direction: column;
    gap: 0.3em;
}

.subtitle-en {
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.subtitle-cn, .subtitle-my {
    font-size: 0.7em;
    font-weight: 400;
    letter-spacing: normal;
}

.subtitle-my {
    font-style: italic;
}

.luxury-countdown {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.9em;
    color: rgba(192, 192, 192, 0.6);
    letter-spacing: 0.1em;
    z-index: 5;
}

.luxury-countdown span {
    color: #d4af37;
    font-weight: 400;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .welcome-text {
        font-size: 1.2em;
        letter-spacing: 0.3em;
        margin-bottom: 1rem;
    }
    
    .luxury-text {
        font-size: 2em;
    }
    
    .luxury-subtitle {
        font-size: 0.9em;
    }
    
    .luxury-countdown {
        font-size: 0.8em;
    }
}