/**
 * 
 */
:root {
--primary: #1a0933;
--secondary: #2a1155;
--黄色: #d4af37;
--text-light: #b0b0d0;
--transition: all 0.3s ease;
--gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--gradient-secondary: linear-gradient(45deg,rgb(223, 182, 240),rgb(29, 99, 146));
--shadow-layer1: 0 8px 32px rgba(31, 38, 135, 0.15);
--shadow-layer2: 0 4px 16px rgba(0, 0, 0, 0.08);
--spacing-unit: 1.5rem;
}

.viixg-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.viixg-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0c0b2b 0%, #1a0933 100%);
    color: #e0e0ff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
        
/* 星空背景容器 */
.viixg-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* 低于内容但高于背景 */
    pointer-events: none;
    overflow: hidden;
}
        
/* 星星样式 */
.viixg-star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: viixg-twinkle var(--duration, 5s) infinite ease-in-out;
}
    /* 闪烁动画 */
    @keyframes viixg-twinkle {
        0%, 100% { opacity: 0.2; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.2); }
    }


/* 星座装饰 */
.viixg-constellation {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
        
.viixg-constellation-line {
    position: absolute;
    background: rgba(180, 180, 255, 0.15);
    height: 1px;
    transform-origin: left center;
}
 
/* 流星效果 */
.viixg-shooting-star {
    position: absolute;
    top: 0;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
    opacity: 0;
    z-index: -1;
}
    @keyframes viixg-shooting {
        0% {
            opacity: 0;
            transform: translate(0, 0) scale(1);
        }
        10% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            transform: translate(500px, 200px) scale(0.2);
        }
    }

.viixg-thankyou{
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 10;
  margin: 20px auto;
  z-index: 2; 
}         

/* 内容容器*/
.viixg-booking{
    /* text-align: center; 
    background: rgba(25, 15, 50, 0.7); 
    border: 1px solid rgba(212, 175, 55, 0.2);  */
    /* backdrop-filter: blur(10px); */
    padding: 24px;
    background: transparent; 
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(100, 60, 255, 0.2); 
    margin: 20px;
}


.viixg-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
    position: relative;
}



.viixg-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
        
.viixg-logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--黄色);
    font-size: 36px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.5);
}
        
.logo-text {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(to right, #d4af37, #f9f295);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}
.tagline {
    position: relative;
    font-size: 28px;
    background: linear-gradient(90deg, #a18cd1, #fbc2eb, #8ec5fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
    text-shadow: 0 0 20px rgba(140, 100, 255, 0.3);
    z-index: 5;
}



 /* 顶部卡片头部 */
.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    /* background: linear-gradient(90deg, var(--primary), var(--secondary)); */
    backdrop-filter: blur(5px);
    padding: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
     
.success-icon {
    width: 70px;
    height: 70px;
    background: rgba(20, 202, 75, 0.479);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--黄色);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}
        
.success-text h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--黄色);
}

.success-text p {
    font-size: 18px;
    background: linear-gradient(90deg, #a18cd1, #fbc2eb, #8ec5fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
    text-shadow: 0 0 20px rgba(140, 100, 255, 0.3);
    line-height: 1.6;
}
        

.success-text .mobile-text {
    display: none;
    font-size: 16px;
    color: #e0c3fc;
    line-height: 1.6;
}

.success-text .mobile-text p {
    margin-bottom: 8px;
}

.footer {
    text-align: center;
    padding: 30px 0;
    color: var(--text-light);
    font-size: 16px;
}

.footer p:first-child {
    margin-bottom: 10px;
    font-weight: 500;
}
/* 订单编号区块 - 玻璃拟态风格 */
.order-number-box {
    backdrop-filter: blur(5px);
    padding: 12px;
    /* box-shadow: var(--shadow-layer1); */
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 1.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.order-number-box:hover {
    transform: translateY(-3px) scale(1.02);
}

.icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: white; */
    font-size: 2.8rem;
    box-shadow: var(--shadow-layer2);
}

.numbering{
    font-size: 1.8rem;
    /* text-align: center;  */
    background: linear-gradient(90deg, #7d4bf3, #e470c3, #eb4d31);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
    text-shadow: 0 0 20px rgba(255, 40, 2, 0.3);
}

/* 分区标题 */
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem;
    /* color: var(--text-lighter); */
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(180, 180, 255, 0.15);
}

.section-title i {
    color: var(--黄色);
    font-size: 1.3em;
}


/* 订单详情 */
.order-details {
    border-radius: 16px;
    padding: var(--spacing-unit);
    margin-bottom: var(--spacing-unit);
    border: 1px solid rgba(180, 180, 255, 0.15); 
    backdrop-filter: blur(5px);
}

.order-details p {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
}

.order-details:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

/* 问题卡片 */
.question-card {
    border-radius: 16px;
    background: rgba(30, 20, 60, 0.4);
    padding: var(--spacing-unit);
    margin: var(--spacing-unit) 0;
    border: 1px solid rgba(180, 180, 255, 0.15); 
    transition: var(--transition);
}

.question-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.question-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: #f0f0ff;
    margin-bottom: 15px;
}


.question-content {
    background: rgba(10, 5, 25, 0.4);
    border-radius: 12px;
    padding: 18px;
    font-size: 1.1rem;
    line-height: 1.6;
    border: 1px solid rgba(180, 180, 255, 0.15);
}





/* 邮箱表单 - 现代极简风格 */
.email-section {
    padding: var(--spacing-unit);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(180, 180, 255, 0.15);
    font-size: 1.3rem;
}
.email-section h3{
    padding: 12px;
    text-align: center;
    font-size: 2.3rem;
}

.email-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}


/* .email-confirm{
    font-size: 1.3rem;
    color: #ffffff;
} */



#emailForm {
    display: grid;
    gap: 1.2rem;
    position: relative;
    /* padding:12px; */
}

#emailForm input[type="email"] {
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    background: rgba(245, 245, 245, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
}

#emailForm input[type="email"]:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.2);
    outline: none;
}

#emailForm button {
    background: var(--gradient-secondary);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#emailForm button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-layer2);
}

/* 通知样式 */
.viixg-notice {
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ff0095;
    font-size: 1.3rem;
}

.viixg-notice.success {
    backdrop-filter: blur(8px);
    /* color: #ffffff; */
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(90deg, #7d4bf3, #e470c3, #eb4d31);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
    text-shadow: 0 0 20px rgba(255, 40, 2, 0.3);
}

.viixg-notice.error {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
}

/* 加载动画 */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.order-number-box .icon,.success-icon,.success-text h1::before{
    animation: float 3s ease-in-out infinite;
}



/* 响应式设计 */
@media (max-width: 768px) {
    .viixg-thankyou {
        /* margin: 10px auto; */
         margin: 0px;
    }

    .viixg-booking{
        padding: 0px;
        margin: 0px;
        margin-bottom: 10px;
        position: relative;
        border-radius: 16px;
        box-shadow: 0 0 30px rgba(100, 60, 255, 0.2); 
    }


  
    .viixg-header{
        margin-bottom: 10px;
    }
    
    .viixg-logo{
        margin-bottom: 2px;
    }

    .viixg-logo-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .logo-text {
        font-size: 24px;
    } 
    
    /* .tagline {
        font-size: 18px;
    } 
  */
    .card-header {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .success-text h1 {
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .success-text h1::before {
        content: "\f00c"; /* FontAwesome Unicode for check icon */
        font-family: 'Font Awesome 5 Free'; /* 确保已引入FontAwesome */
        font-weight: 900; /* Solid样式所需 */
        display: inline-block;
        
        /* 圆形背景样式 */
        width: 1.8em;
        height: 1.8em;
        background: rgba(20, 202, 75, 0.479);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        
        /* 图标样式 */
        font-size: 0.9em;
        color: var(--黄色);
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
        margin-right: 8px;
    }

    .success-text .desktop-text,.success-icon,.icon {
        display: none;
    }

    .success-text .mobile-text {
        display: block;
        text-align: center;
        color: #e0c3fc;
        font-size: 16px;
        line-height: 1.6;
    }

    .success-text .mobile-text p {
        margin-bottom: 8px;
    }

    .order-number-box {
        /* display: flex; */
            gap: 0rem;
            padding: 2px;
            margin: 0rem;
            align-items: center; 
        justify-content: center;
    }
    
    .numbering {
        font-size: 1rem;
        margin: 0.5rem; 
    }
    
    .section-title{
       padding: 0.8rem; 
       margin: 0.2rem 0;
       font-size: 1rem;
    }


    .order-details p{
        grid-template-columns: 1fr;
        font-size: 0.8rem;
        gap: 0.2rem;
    }

    .question-content{
        padding: 0; 
    }

    /* 邮箱表单 - 现代极简风格 */
    .email-section {
        font-size: 1rem;
        padding: 0rem;
    }

    .email-section h3{
        font-size: 1.1rem;
        padding: 0;
        margin: 1rem;  
         /* margin: 0 auto 1rem auto;   */
        /* margin-top: 0px;
        margin-right: auto; */
        margin-bottom: 0rem;
        /* margin-left: auto; */
    }

    #emailForm{
        padding: 1.2rem;
    }

    #emailForm button {
        width: 100%;
    }

    .viixg-notice.success {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .logo-text {
        font-size: 28px;
    }  
    
}
    




