* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

body {
    font-style: inherit;
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #0a0a1a; 
    background-size: 100% 100%; /* 拉伸到容器的100%宽度和高度 */
    background-repeat: no-repeat;
}

/* 磨砂亚克力面板 */
.acrylic-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    max-width: 800px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

/* 亚克力面板的装饰性光效 */
.acrylic-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
}

.acrylic-panel::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(120, 119, 198, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 50%
    );
    z-index: -1;
}

h1 {
    color: transparent;
    background: linear-gradient(
        45deg,
        #00ffff 0%,
        #c5a7e7 25%,
        #888815 50%,
        #21c921fb 75%,
        #00ffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: hologram-shift 3s linear infinite;
    position: relative;
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* 按钮容器 */
.buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.button1 {
    border-radius: 12px;
    padding: 16px 36px;
    border: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    background-color: rgba(4, 4, 82, 0.7);
    color: #00ffff;
    border: 2px solid #00ffff;
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button2 {
    border-radius: 12px;
    padding: 16px 36px;
    border: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    background-color: rgba(4, 4, 82, 0.7);
    color: #ff00ff;
    border: 2px solid #ff00ff;
    box-shadow: 
        0 0 15px rgba(255, 0, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button1:hover {
    background-color: rgba(0, 255, 255, 0.2);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    text-shadow: 0 0 8px #ffffff;
}

.button2:hover {
    background-color: rgba(255, 0, 255, 0.2);
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    text-shadow: 0 0 8px #ffffff;
}

.button1::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(0, 255, 255, 0.9) 0%,
        rgba(0, 255, 255, 0.6) 20%,
        rgba(0, 255, 255, 0.3) 40%,
        rgba(0, 255, 255, 0.1) 60%,
        transparent 80%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.button2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 0, 255, 0.9) 0%,
        rgba(255, 0, 255, 0.6) 20%,
        rgba(255, 0, 255, 0.3) 40%,
        rgba(255, 0, 255, 0.1) 60%,
        transparent 80%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.button1:active::after {
    animation: fullRipple 0.6s ease-out forwards;
}

.button2:active::after {
    animation: fullRipple 0.6s ease-out forwards;
}

.button1:active {
    transform: scale(0.97);
    background-color: rgba(0, 255, 255, 0.3);
    box-shadow: 
        0 0 25px rgba(0, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.button2:active {
    transform: scale(0.97);
    background-color: rgba(255, 0, 255, 0.3);
    box-shadow: 
        0 0 25px rgba(255, 0, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@keyframes fullRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

.button1.ripple-active::after,
.button2.ripple-active::after {
    animation: fullRipple 0.6s ease-out forwards;
}

@keyframes hologram-shift {
    to {
        background-position: 200% center;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .acrylic-panel {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .buttons-container {
        flex-direction: column;
        gap: 15px;
    }
    
    h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .button1, .button2 {
        width: 100%;
        max-width: 250px;
        padding: 14px 28px;
    }
}

h4 {
    color: transparent;
    background: linear-gradient(
        45deg,
        #00ffff 0%,
        #c5a7e7 25%,
        #888815 50%,
        #21c921fb 75%,
        #00ffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: hologram-shift 3s linear infinite;
    position: relative;
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}


h6 {
    color: transparent;
    background: linear-gradient(
        40deg,
        #00ffff 0%,
        #c5a7e7 25%,
        #888815 50%,
        #21c921fb 75%,
        #00ffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: hologram-shift 3s linear infinite;
    position: relative;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

h5 {
    color: transparent;
    background: linear-gradient(
        40deg,
        #00ffff 0%,
        #c5a7e7 25%,
        #888815 50%,
        #21c921fb 75%,
        #00ffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    font-family: 'Segoe UI';
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: hologram-shift 3s linear infinite;
    position: relative;
    text-align: center;
    margin-top: 0;

}