.gradient-text-container {
    width: 100vw;
    max-width: 100vw;
    text-align: center;
    margin: 0 auto 0 auto;
    padding: 40px 0 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.gradient-text {
    font-size: 12vw;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #f0f0f0 60%, #a0a0a0 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
    margin: 0;
    line-height: 1.1;
    letter-spacing: 2px;
}

/* 响应式调整字体大小 */
@media (max-width: 768px) {
    .gradient-text {
        font-size: 12vw; /* 在小屏幕上增大相对大小 */
    }
}