@charset "utf-8";

html,
body {
    width: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

* {
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 50px;
}

h2 {
    color: #000000;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

a {
    text-decoration: none;
    color: rgb(0, 0, 24);
    cursor: pointer;
}

.ad-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
}

.ad-slot {
    width: 300px;
    height: 250px;
    background-color: #000;
}

.primary-nav {
    background-color: #000;
    padding: 12px 0;
    width: 80%;
    margin: 10px auto;
}

.primary-nav .nav-container {
    max-width: 750px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    padding: 0 20px;
}

.primary-nav .nav-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    gap: 32px;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.primary-nav .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.primary-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.primary-nav .nav-link:hover {
    background-color: #9933cc;
    color: #fff;
}

.primary-nav .nav-link-search {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    position: relative;
}

.primary-nav .nav-link-search .nav-link-search-icon {
    width: 30px;
    aspect-ratio: 1;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../../images/search.cc08bc9.png);
}

.nav-logo {
    position: relative;
    min-height: 50px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
}

.nav-logo .logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

/* 
.nav-logo span.logo-text {
    font-size: 2rem;
    line-height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    width: auto;
    height: 100%;
    text-align: center;
    opacity: 0.8;
    white-space: nowrap;
} */

.nav-link-expansion {
    position: relative;
}

.navigation-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    z-index: 9999;
    display: none;
    overflow: hidden;
    margin-top: 4px;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.navigation-submenu.active {
    display: block;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

.submenu-items {
    padding: 8px 0;
}

.navigation-option {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.navigation-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #9933cc;
}

.query-entry-field {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    min-width: 200px;
    z-index: 9999;
    display: none;
    overflow: hidden;
    margin: 4px 0 0;
    padding: 8px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
}

.query-entry-field.active {
    display: block;
}

.query-entry-input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 8px 12px;
    outline: none;
}

.query-entry-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.query-entry-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.query-entry-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.query-entry-submit {
    position: absolute;
    right: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(../../images/search.cc08bc9.png) center/contain no-repeat;
    border: none;
    background-color: transparent;
    cursor: pointer;
    opacity: 0.7;
}

.query-entry-submit:hover {
    opacity: 1;
}

.rotating-blocks-wrapper {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.rotating-blocks-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: -webkit-radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    -webkit-animation: rotate 20s linear infinite;
            animation: rotate 20s linear infinite;
}

.rotating-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    gap: 20px;
    width: 60%;
    padding: 10px;
    margin: 10px auto;
    text-align: center;
}

.rotating-content p {
    color: #241a3d;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.terminal-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.terminal-text-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-justify-content: space-around;
            justify-content: space-around;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
            align-items: flex-end;
}

.edge-staircase-pattern {
    position: relative;
    height: 100px;
    background-color: #fff;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    -moz-box-sizing: border-box;
         box-sizing: border-box;
}

.identity-branding-zone {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
}

.brand-mark-container {
    width: 160px;
    height: 50px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../../images/logo.1fbae43.png);
}

.category-indicator {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding: 0 1px;
    cursor: pointer;
}

.headline-display-area h1 {
    font-family: 'Arial', sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: right;
    margin: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
}

.navigation-access-points {
    max-width: 750px;
    margin: 0 auto;
    padding: 32px 20px 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.access-point-item {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.access-point-item:hover {
    color: purple;
}

.display-arena {
    min-height: 90vh;
}

.visual-stream-title {
    color: #000;
    text-indent: 30px;
    font-size: 50px;
    font-weight: 600;
}

.visual-stream-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.visual-stream-container--none-padding {
    padding-top: 0;

}

.visual-stream-content {
    overflow: hidden;
    position: relative;
}

.visual-stream-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    padding: 0 20px;
    padding-top: 10px;
}

.visual-stream-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border: none;
    width: 45px;
    height: 45px;
    background-position: center;
    background-size: 60%;
    /* 调整图标大小 */
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.731);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.823);
}

.visual-stream-nav-left {
    left: 10px;
    background-image: url(../../images/left.4020d86.png);

}

.visual-stream-nav-right {
    right: 10px;
    background-image: url(../../images/right.76fd044.png);
}

.visual-stream-content .gateway-visual-entity {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc(20% - 16px);
       -moz-box-flex: 0;
            flex: 0 0 calc(20% - 16px);
    min-width: 0;
    border-top: 1px solid #000;
    padding: 20px 10px 5px;
    position: relative;
}

.visual-stream-content .gateway-visual-entity:nth-child(4n)::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background-color: #000;
    z-index: 1;
}

.gateway-visual-entity .visual-frame {
    aspect-ratio: 1.7;
}

.gateway-visual-entity .visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.genre-badge {
    white-space: nowrap;
    overflow: hidden;
}

.gateway-visual-entity .genre-badge {
    font-weight: 600;
    text-transform: uppercase;
}

.gateway-visual-entity .title-header {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.gateway-visual-entity .deco-date {
    color: #666;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
}

.visual-stream-content .category-deco {
    display: none;
}

.media-garden {
    padding: 20px;
}

.violet-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    gap: 20px;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
}

.violet-list .gateway-narrative-entity {
    width: 40%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
}

.violet-list .gateway-narrative-entity .visual-frame img {
    aspect-ratio: 1;
    width: 100%;
}

.violet-list .gateway-narrative-entity .title-header {
    line-height: 24px;
    max-height: 72px;
    overflow: hidden;
    margin-bottom: 10px;
}

.violet-list .gateway-narrative-entity .violet-info-carrier {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
}

.violet-primary-label,
.deco-date {
    white-space: nowrap;
    overflow: hidden;
}

.violet-list .gateway-narrative-entity .violet-info-carrier .deco-date {
    font-size: 12px;
    margin-top: 5px;

}

.violet-list .gateway-narrative-entity:nth-child(even) {
    direction: rtl;
}

.primary-cta {
    width: 30px;
    aspect-ratio: 1;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../../images/go.3e7b786.png);
}

.violet-garden {
    position: relative;
}

.violet-pluse {
    position: absolute;
    left: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    top: 0;
    aspect-ratio: 1;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../../images/Clock_2.11672ff.png);
}

.explore-more {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding: 0 1px;
    display: inline-block;
    margin: 30px;
    margin-left: auto;
    cursor: pointer;
}

.right0title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
            justify-content: flex-end;
    text-align: right;
    margin-top: 30px;
    margin-bottom: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
            align-items: flex-end;
}

.right0title .explore-more {
    background-color: #000;
    color: #fff;
}

@media screen and (max-width:900px) {
    .nav-logo {
        min-height: 50px;
        width: 100%;
    }

    .primary-nav .nav-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
        gap: 16px;
    }

    .primary-nav .nav-links {
        -webkit-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
                justify-content: center;
    }

    .navigation-submenu {
        min-width: 180px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }

    .query-entry-field {
        min-width: 180px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }

    .identity-branding-zone {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .headline-display-area h1 {
        font-size: 28px;
        text-align: center;
    }

    .gateway-visual-entity .genre-badge {
        font-size: 14px;
    }

    .visual-stream-content .gateway-visual-entity {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 -webkit-calc(33.333% - 16px);
           -moz-box-flex: 0;
                flex: 0 0 calc(33.333% - 16px);
    }
}

@media screen and (max-width:480px) {
    .rotating-blocks-wrapper::before {
        height: 100%;
        top: 0;
    }


    .visual-stream-track {
        padding: 0;
    }


    .rotating-blocks-wrapper {
        padding: 0;
    }

    .primary-nav {
        padding: 8px 0;
    }

    .primary-nav .nav-container {
        padding: 0 10px;
    }

    .primary-nav .nav-link {
        padding: 6px 12px;
        font-size: 12px;
    }

    .navigation-submenu {
        min-width: 160px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }

    .query-entry-field {
        min-width: 160px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }

    .identity-branding-zone {
        gap: 24px;
    }

    .headline-display-area h1 {
        font-size: 24px;
    }

    .navigation-access-points {
        gap: 12px;
    }

    .navigation-access-points {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .terminal-text-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
                align-items: center;
        gap: 10px;
    }

    .visual-stream-content .gateway-visual-entity {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 -webkit-calc(50% - 16px);
           -moz-box-flex: 0;
                flex: 0 0 calc(50% - 16px);
    }

    .visual-stream-nav {
        width: 42px;
        height: 42px;
    }

    .visual-stream-title,
    h1 {
        font-size: 25px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .gateway-visual-entity .visual-frame img {
        height: 110px;
        aspect-ratio: auto;
    }

    .violet-pluse {
        left: 0;
        right: 0;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }

    .violet-list .gateway-narrative-entity {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .violet-list .gateway-narrative-entity .visual-frame img {
        height: 170px;
        aspect-ratio: auto;
    }

    .genre-badge {
        overflow: hidden;
        height: 18px;
    }
}
