* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

img {
    width: 100%;
    object-fit: cover;
    display: block;
}

video {
    object-fit: cover;
}

a {
    text-decoration: none;
}

b,
strong {
    font-weight: 400
}

em,
i {
    font-style: normal;
}

li {
    list-style: none;
}

input {
    border: 0;
    outline: 0;
    touch-action: none;
}

button {
    outline: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

/* footer */
footer {
    width: 100%;
    background-color: #111;
    color: #aaa;
    font-size: 12px;
    line-height: 1.6;
    padding: 18px 0 14px;
    border-top: 1px solid #2a2a2a;
    transition: 1s;
}

footer .footer-inner {
    width: var(--all-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

footer .footer-copyright {
    color: #666;
    font-size: 11px;
}

footer a {
    color: #aaa;
    transition: color .2s;
}

footer a:hover {
    color: #33adff;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
}

.footer-info a {
    padding: 0 10px;
    border-right: 1px solid #333;
    font-size: 12px;
}

.footer-info a:last-child {
    border-right: none;
}

@media screen and (max-width: 769px) {
    .footer-info a {
        padding: 4px 8px;
        border-right: none;
    }
}

.cookieFooter {
    margin-bottom: 49px;
}

.img-box {
    position: relative;
}

.img-box::before {
    content: '';
    display: block;
}

.img-box>img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: none repeat scroll 0 0 #000000;
}

main {
    flex: 1;
}

.loading {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #0000004d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
    inset: 0;
}

.loader {
    width: 45px;
    height: 40px;
    background: linear-gradient(#0000 calc(1*100%/6), #fff 0 calc(3*100%/6), #0000 0),
        linear-gradient(#0000 calc(2*100%/6), #fff 0 calc(4*100%/6), #0000 0),
        linear-gradient(#0000 calc(3*100%/6), #fff 0 calc(5*100%/6), #0000 0);
    background-size: 10px 400%;
    background-repeat: no-repeat;
    animation: matrix 1s infinite linear;
}

@keyframes matrix {
    0% {
        background-position: 0% 100%, 50% 100%, 100% 100%
    }

    100% {
        background-position: 0% 0%, 50% 0%, 100% 0%
    }
}

:root {
    --all-width: 980px;
    --logo: 208px;
    --search-bar: 200px;
    --button: 20px;
}

.center {
    width: var(--all-width);
    margin: 0 auto;
}

@media screen and (max-width:769px) {
    :root {
        --all-width: 100%;
        --search-bar: 100%;
    }
}

@media only screen and (max-device-width: 768px) and (orientation: landscape) {
    /* 仅限手机，横屏模式 */
}

@media only screen and (max-device-width: 768px) and (orientation: portrait) {
    /* 仅限手机，竖屏模式 */
}

.cookieMessage {
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.34);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.34);
    align-items: center;
    background-color: #fff;
    border: 1px solid #bbb;
    border-radius: 5px;
    bottom: 30px;
    justify-content: space-between;
    left: 50%;
    padding: 10px;
    position: fixed;
    transform: translateX(-50%);
    width: calc(var(--all-width) * .9);
    z-index: 100000;
    display: none;
}

.cookieText {
    color: #000;
    font-size: 12px;
    line-height: 15px;
}

.cookieText a {
    color: #d60000;
    text-decoration: underline;
}

.cookieActions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookieBtn {
    background: #d60000;
    border-radius: 3px;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    padding: 10px 18px;
    text-align: center;
    width: 100%;
}

.cookieBtn.agree {
    background: #d60000;
    color: #fff;
}

.cookieBtn.reject {
    background-color: transparent;
    color: #555;
    border: 1px solid #555;
}

@media screen and (max-width: 769px) {
    .cookieMessage {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
        gap: 8px;
        width: 100%;
    }

    .cookieFooter {
        margin-bottom: 132px;
    }
}

/* Share Section */
.share-section {
    width: 100%;
    background-color: #111;
    border-top: 1px solid #2a2a2a;
    padding: 14px 0;
}

.share-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.share-label {
    color: #aaa;
    font-size: 12px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.share-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid #333;
    background-color: #1a1a1a;
    color: #aaa;
    transition: background-color .2s, color .2s, border-color .2s;
}

.share-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.share-btn:hover {
    color: #fff;
    border-color: #555;
    background-color: #2a2a2a;
}

.share-facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.share-twitter:hover {
    border-color: #e7e7e7;
    color: #e7e7e7;
}

.share-reddit:hover {
    border-color: #ff4500;
    color: #ff4500;
}

.share-whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
}

.share-copy:hover {
    border-color: #33adff;
    color: #33adff;
}

#copy-message {
    position: fixed;
    left: 50%;
    width: 20%;
    transform: translateX(-50%);
    z-index: 999999999;
    color: #fff;
    bottom: 20px;
    text-align: center;
    border: 1px solid transparent;
    border-color: #33adff;
    color: #ffffff;
    background-color: #33adffb9;
    padding: 8px 0;
    border-radius: 10px;
}

@media screen and (max-width: 769px) {
    .share-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 12px;
    }

    .share-btns {
        gap: 6px;
    }

    .share-btn {
        padding: 6px 10px;
    }

    #copy-message {
        width: 50%;
    }
}