
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0a1a, #1a1a3a, #0a0a1a);
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.title {
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(79, 172, 254, 0.5);
}

.title p {
    font-size: 1.2rem;
    color: #a0a0e0;
    letter-spacing: 2px;
}

.hand-container {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hand {
    position: relative;
    width: 500px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 25px #00f2fe);
    animation: handFloat 6s ease-in-out infinite;
    z-index: 5;
}

.hand-icon {
    font-size: 280px;
    color: #00f2fe;
    text-shadow: 0 0 40px #00f2fe;
    transform: rotate(0deg);
    transition: all 0.5s ease;
}

.scores-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.score-card {
    width: 140px;
    height: 80px;
    background: rgba(16, 18, 27, 0.3);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
    border: 1px solid rgba(79, 172, 254, 0.7);
    transition: all 0.4s ease;
    position: absolute;
    backdrop-filter: blur(8px);
    z-index: 10;
}

.score-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
}

.score-card:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.8);
    z-index: 20;
    background: rgba(16, 18, 27, 0.5);
}

.subject {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #b0b0f0;
    font-weight: 500;
}

.score {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}

/* 悬浮卡片位置 */
.ty_card {
    top: 10%;
    left: 20%;
    animation: float 5s ease-in-out infinite;
}


.lr_card {
    top: 45%;
    left: 10%;
    animation: float 5s ease-in-out infinite 1s;
}

.xl_card{
     top: 75%;
    left: 8%;
    animation: float 5s ease-in-out infinite 1s;
}

.lm_card {
    top: 8%;
    right: 20%;
    animation: float 5s ease-in-out infinite 0.5s;
}
.rd_card {
    top: 40%;
    right: 10%;
    animation: float 5s ease-in-out infinite 1.5s;
}
 .sj_card{
     top: 75%;
    right: 8%;
    animation: float 5s ease-in-out infinite 1s;
}
.tech-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tech-line {
    position: absolute;
    background: rgba(0, 242, 254, 0.1);
    animation: lineMove 15s linear infinite;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00f2fe;
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

@keyframes handFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes lineMove {
    0% {
        transform: translateY(100vh);
    }
    100% {
        transform: translateY(-100vh);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

.glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.25) 0%, rgba(0, 242, 254, 0) 70%);
    filter: blur(15px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.connection-line {
    position: absolute;
    height: 2px;
    background: transparent;
    border-top: 1px dashed #00f2fe;
    transform-origin: left center;
    z-index: 4;
    opacity: 0.7;
    animation: linePulse 3s infinite;
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .scores-container {
        flex-direction: column;
        align-items: center;
    }

    .hand-container {
        height: 400px;
    }

    .hand {
        width: 350px;
        height: 280px;
    }

    .hand-icon {
        font-size: 200px;
    }

    .score-card {
        width: 120px;
        height: 70px;
    }

    .ty_card, .lr_card,.xl_card, .lm_card,.rd_card,sj_card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-bottom: 20px;
    }

    .glow {
        width: 300px;
        height: 300px;
    }
}

 .navbar_dz {
    position: fixed;
    top: 0;
    right: 0;
    padding: 12px;
}

.navbar_dz a {
    /*color: white;*/
    text-decoration: none;
    font-size:1.2rem ;
    margin: 0 12px;
     background: linear-gradient(90deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(79, 172, 254, 0.5);

    /*font-size: 1.2rem;*/
    /*color: #a0a0e0;*/
}
.navbar_dz a:hover {
    color: white; /* 鼠标悬浮时的颜色 */
  }

.vip-badge {
background: linear-gradient(45deg, #ff00cc, #3333ff);
color: white;
padding: 2px 8px;
border-radius: 12px;
font-size: 1rem;
font-weight: bold;
}

.modern-vip {
background: linear-gradient(to right, #ffd700, #ff8c00); /* 金色渐变 */
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: bold;
}
