@import url('/assets/fonts/HYWenHei.ttf');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'HYWenHei', sans-serif;
    cursor: default!important;
    outline: none;
}
img {
    vertical-align: middle;
}
a {
    text-decoration: unset;
    color: rgb(200, 200, 200)!important;
}
html {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
}
body {
    max-width: 430px;
    height: 100%;
    margin: 0 auto;
    background-color: rgb(20, 20, 20);
    overflow: hidden;
    color: rgb(200, 200, 200);
}
.main-page {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.main-page .welcome-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.75);
}
.main-page .welcome-container .welcome {
    width: 100%;
    height: 450px;
    background-image: url('/assets/images/main/welcome.webp');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: calc(50% - 125px);
    transform: translateY(-50%);
}
.main-page .welcome-container .welcome .welcome-message:nth-child(1) {
    width: 340px;
    background: linear-gradient(180deg, rgb(111, 134, 166), rgb(201, 211, 225), rgb(46, 63, 95));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    bottom: 212px;
    right: 20px;
    letter-spacing: -1px;
}
.main-page .welcome-container .welcome .welcome-message:nth-child(2) {
    font-size: 13px;
    color: rgb(255, 188, 0);
    position: absolute;
    bottom: 150px;
    margin: 0 25px;
    width: 100%;
}
.main-page .welcome-container .welcome .welcome-message:nth-child(2) p:nth-child(2) {
    width: 260px;
    text-align: right;
    margin-left: auto;
    right: 60px;
    position: relative;
}
.main-page .welcome-container .welcome .welcome-message:nth-child(3) {
    font-size: 13px;
    color: rgb(255, 188, 0);
    position: absolute;
    bottom: 110px;
    margin: 0 25px;
    width: 100%;
}
.main-page .welcome-container .welcome .welcome-message:nth-child(3) p:nth-child(2) {
    padding-left: 75px;
}
.main-page .welcome-container .welcome .welcome-message:nth-child(3) p:nth-child(3) {
    padding-left: 150px;
}
.main-page .welcome-container .welcome .welcome-message:nth-child(3) p:nth-child(4) {
    position: absolute;
    left: calc(50% - 25px);
    transform: translateX(-50%);
    margin-top: 30px;
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(90deg, rgb(255, 215, 0), rgb(255, 165, 0), rgb(255, 215, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgb(255, 215, 0, 0.6));
    background-size: 200% 100%;
    animation: shine 3s linear infinite;
}
.main-page .welcome-container .welcome .welcome-button {
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 130px;
    height: 39px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-image: url('/assets/images/buttons/welcome.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.main-page .welcome-container .welcome .welcome-button:hover {
    background-image: url('/assets/images/buttons/welcome@hover.png');
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .main-page .welcome-container .welcome .welcome-message:nth-child(1) {
        font-size: 19px;
    }
    .main-page .welcome-container .welcome {
        background-image: url('/assets/images/main/welcome@2.webp');
    }
}