@font-face {
    font-family: "smiley";
    src: url(../font/Outfit-VariableFont_wght.ttf);
}

html,
body {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "smiley";
}

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 {
    width: 100%;
    background: linear-gradient(135deg, rgba(17, 20, 56, 0.95) 0%, rgba(44, 28, 82, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    padding: 32px 0 24px 0;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(193, 49, 128, 0.5), transparent);
}

footer > div:first-child {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-info {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.footer-info a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 250ms ease;
    position: relative;
    text-decoration: none;
}

.footer-info a:hover {
    color: #fff;
    background: rgba(193, 49, 128, 0.15);
    transform: translateY(-2px);
}

.footer-info a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c13180, #d94a9a);
    transition: all 250ms ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.footer-info a:hover::after {
    width: 80%;
}

.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: linear-gradient(160deg, #744167 0%, #3d2b5a 40%, #292c52 100%);
}

main {
    flex: 1;
}

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

:root {
    --all-width: 1200px;
    --logo: 200px;
    --button: 36px;
    --search-bar: 256px;
    --radius: 9999px;
    --hero-img: 180px;
    --two-em: 32px;
}

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

.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;
}

.container {
    background-color: #414141;
}

@keyframes bounce {

    0%,
    100% {
        translate: 0px 36px;
    }

    50% {
        translate: 0px 46px;
    }
}

@keyframes bounce2 {

    0%,
    100% {
        translate: 0px 46px;
    }

    50% {
        translate: 0px 56px;
    }
}

@keyframes umbral {
    0% {
        stop-color: #d3a5102e;
    }

    50% {
        stop-color: rgba(211, 165, 16, 0.519);
    }

    100% {
        stop-color: #d3a5102e;
    }
}

@keyframes partciles {

    0%,
    100% {
        translate: 0px 16px;
    }

    50% {
        translate: 0px 6px;
    }
}

#particles {
    animation: partciles 4s ease-in-out infinite;
}

#animatedStop {
    animation: umbral 4s infinite;
}

#bounce {
    animation: bounce 4s ease-in-out infinite;
    translate: 0px 36px;
}

#bounce2 {
    animation: bounce2 4s ease-in-out infinite;
    translate: 0px 46px;
    animation-delay: 0.5s;
}


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

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

.cookieMessage {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #1e1e1e;
    border-top: 2px solid #d94a9a;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    z-index: 9999;
    flex-wrap: wrap;
}

.cookieIcon {
    font-size: 20px;
    flex-shrink: 0;
}

.cookieText {
    color: #ccc;
    font-size: 12px;
    flex: 1;
    min-width: 200px;
    line-height: 1.5;
}

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

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

.cookieBtn {
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

.cookieBtn.agree {
    background: linear-gradient(135deg, #c13180, #d94a9a);
    color: #fff;
}

.cookieBtn.agree:hover {
    background: linear-gradient(135deg, #d94a9a, #c13180);
}

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

.cookieBtn.reject:hover {
    border-color: #aaa;
    color: #fff;
}

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

    .cookieFooter {
        margin-bottom: 132px;
    }

    .footer-info {
        flex-direction: column;
        gap: 12px;
    }

    .footer-info a {
        padding: 10px 20px;
        font-size: 14px;
    }

    footer {
        padding: 24px 16px 20px 16px;
    }

    footer > div:first-child {
        font-size: 13px;
        margin-bottom: 16px;
    }
}

#copy-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);

    padding: 10px 16px;
    border-radius: 6px;

    font-size: 14px;
    color: #fff;
    background: rgba(0, 0, 0, 0.85);

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.25s ease, transform 0.25s ease;

    z-index: 9999;
}

#copy-message.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

#copy-message.success {
    background: #4caf50;
}

#copy-message.error {
    background: #f44336;
}