:root {
    --evt-page-bg: linear-gradient(180deg, rgba(236, 253, 245, 0.72) 0%, rgba(248, 250, 252, 0.96) 42%, rgba(239, 246, 255, 0.92) 100%);
    --evt-surface: rgba(255, 255, 255, 0.92);
    --evt-surface-strong: rgba(255, 255, 255, 0.98);
    --evt-border: rgba(203, 213, 225, 0.82);
    --evt-text: #0f172a;
    --evt-muted: #64748b;
    --evt-blue: #2563eb;
    --evt-blue-soft: rgba(37, 99, 235, 0.1);
    --evt-green: #0f766e;
    --evt-orange: #f97316;
    --evt-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    --evt-shadow-soft: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.evt_live_page {
    position: relative;
    margin: 1.4rem auto 0;
    padding: clamp(0.85rem, 2vw, 1.25rem);
    border-radius: 34px;
    background:
        radial-gradient(circle at 8% 0%, rgba(45, 212, 191, 0.18), transparent 28%),
        radial-gradient(circle at 96% 7%, rgba(37, 99, 235, 0.14), transparent 30%),
        var(--evt-page-bg);
    color: var(--evt-text);
    overflow: hidden;
}

.evt_live_page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 72%);
}

.evt_live_page > * {
    position: relative;
    z-index: 1;
}

.global_event_page {
    width: min(1480px, calc(100% - 1.5rem));
    margin: 1rem auto 3rem;
    color: #142033;
}

.global_event_hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: clamp(1rem, 3vw, 2rem);
    min-height: 520px;
    border-radius: 30px;
    overflow: hidden;
    padding: clamp(1.1rem, 3vw, 2.5rem);
    background: linear-gradient(135deg, #101827, #243247);
    background-position: center;
    background-size: cover;
    color: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
}

.global_event_hero_copy {
    display: grid;
    align-content: end;
    gap: 1rem;
}

.global_event_hero h1 {
    max-width: 11ch;
    margin: 0;
    color: #fff;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: .88;
}

.global_event_hero p {
    max-width: 62ch;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 1.03rem;
    line-height: 1.7;
}

.global_event_fact_row {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.global_event_fact_row span {
    display: grid;
    gap: .12rem;
    min-width: 135px;
    border-radius: 18px;
    padding: .75rem .9rem;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-weight: 800;
}

.global_event_fact_row strong {
    color: rgba(255,255,255,.62);
    font-size: .72rem;
    text-transform: uppercase;
}

.global_event_poster {
    display: grid;
    gap: 1rem;
    align-content: end;
}

.global_event_poster img,
.global_event_poster > i {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    object-fit: cover;
    background: rgba(255,255,255,.14);
    box-shadow: 0 22px 48px rgba(0,0,0,.28);
}

.global_event_poster > i {
    display: grid;
    place-items: center;
    font-size: 4rem;
}

.global_event_countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .5rem;
}

.global_event_countdown span,
.global_event_countdown--manual {
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,.16);
    color: #fff;
    font-weight: 900;
}

.global_event_countdown--manual {
    grid-template-columns: 1fr;
    padding: .8rem;
}

.global_event_products_section {
    margin-top: 1.2rem;
    border: 1px solid rgba(20,32,51,.1);
    border-radius: 26px;
    padding: clamp(1rem, 2vw, 1.5rem);
    background: #fff;
    box-shadow: 0 18px 52px rgba(15,23,42,.08);
}

.global_event_section_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.global_event_section_head h2 {
    margin: .2rem 0 0;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    font-weight: 900;
}

.global_event_section_head p {
    max-width: 34rem;
    margin: .3rem 0 0;
    color: #66758d;
    line-height: 1.6;
}

.global_event_chips {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 1rem;
}

.global_event_chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border: 1px solid rgba(20,32,51,.12);
    border-radius: 999px;
    padding: .65rem .9rem;
    background: #f5f8fc;
    color: #142033;
    font-weight: 800;
    text-decoration: none;
}

.global_event_chip:hover,
.global_event_chip.active {
    background: #142033;
    color: #fff;
    text-decoration: none;
}

.global_event_products_notice,
.global_event_empty_public {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px dashed rgba(20,32,51,.16);
    border-radius: 22px;
    padding: 1.2rem;
    background: #f6f8fb;
    color: #142033;
}

.global_event_products_notice i,
.global_event_empty_public i {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(31,94,255,.12);
    color: #1f5eff;
}

.global_event_products_notice strong,
.global_event_products_notice span {
    display: block;
}

.global_event_products_notice span {
    color: #66758d;
}

.global_event_empty_public {
    min-height: 430px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.global_event_empty_public h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
}

.evt_hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    gap: 0.85rem;
    align-items: start;
    margin-bottom: 1rem;
    padding: clamp(1rem, 2.2vw, 1.3rem);
    border-radius: 26px;
    background:
        radial-gradient(circle at 84% 12%, rgba(45, 212, 191, 0.28), transparent 24%),
        linear-gradient(135deg, #07111f 0%, #12335c 50%, #0f766e 100%);
    color: #ffffff;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
    overflow: hidden;
}

.evt_hero::after {
    content: "";
    position: absolute;
    right: -5rem;
    bottom: -8rem;
    width: 13rem;
    height: 13rem;
    border-radius: 44%;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(-16deg);
}

.evt_hero_copy,
.evt_hero_panel {
    position: relative;
    z-index: 1;
}

.evt_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.38rem 0.66rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #99f6e4;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.evt_hero h1 {
    max-width: 620px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.85rem, 3vw, 2.85rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.evt_hero p {
    max-width: 560px;
    margin: 0.7rem 0 0;
    color: rgba(226, 232, 240, 0.86);
    font-size: 0.96rem;
    line-height: 1.55;
}

.evt_hero_panel {
    align-self: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}

.evt_hero_panel span {
    width: fit-content;
    margin-bottom: 0.45rem;
    padding: 0.32rem 0.58rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.2);
    color: #bfdbfe;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.evt_hero_panel strong {
    margin-top: 0;
    color: #ffffff;
    font-family: var(--display-font);
    font-size: 1.2rem;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.evt_hero_panel small {
    margin-top: 0.3rem;
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.84rem;
    line-height: 1.45;
}

.evt_carousel_shell {
    margin-bottom: 1rem;
}

.slider-cover {
    position: relative;
    padding: 0.75rem;
    border: 1px solid var(--evt-border);
    border-radius: 30px;
    background: var(--evt-surface-strong);
    color: #ffffff;
    box-shadow: var(--evt-shadow);
}

.owl-carousel {
    position: relative;
}

.owl-carousel .owl-item {
    opacity: 1;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.work .img {
    width: 100%;
    min-height: clamp(310px, 40vw, 520px);
    position: relative;
    z-index: 0;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.evt_slide_overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(15, 23, 42, 0.48) 52%, rgba(15, 23, 42, 0.12) 100%),
        radial-gradient(circle at 82% 14%, rgba(45, 212, 191, 0.18), transparent 32%);
}

.evt_slide_text {
    position: relative;
    z-index: 1;
    max-width: 620px;
    padding: clamp(1.25rem, 4vw, 2.5rem);
}

.evt_slide_ad {
    display: inline-flex;
    margin-bottom: 0.75rem;
    padding: 0.4rem 0.68rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.18);
    color: #fde68a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.evt_slide_text h2 {
    margin: 0.9rem 0 0.7rem;
    color: #ffffff;
    font-size: clamp(1.65rem, 3.3vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.evt_slide_text h2 a {
    color: inherit;
    text-decoration: none;
}

.evt_slide_text p {
    max-width: 520px;
    margin: 0 0 1.15rem;
    color: rgba(226, 232, 240, 0.86);
    line-height: 1.7;
}

.thumbnail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 0.85rem 0 0;
}

.thumbnail li a {
    display: block;
}

.thumbnail li a img {
    width: 82px;
    height: 62px;
    object-fit: cover;
    border-radius: 18px;
    opacity: 0.68;
    transform: scale(0.94);
    transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.thumbnail li.active a img {
    opacity: 1;
    transform: scale(1.06);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.28), 0 12px 24px rgba(15, 23, 42, 0.16);
}

.evt_section {
    margin-top: 1rem;
    padding: clamp(1rem, 2vw, 1.25rem);
    border: 1px solid var(--evt-border);
    border-radius: 30px;
    background: var(--evt-surface-strong);
    box-shadow: var(--evt-shadow);
}

.evt_section_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(203, 213, 225, 0.76);
}

.evt_section_kicker {
    color: var(--evt-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.evt_section_header h2 {
    margin: 0.35rem 0 0;
    color: var(--evt-text);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    letter-spacing: -0.045em;
}

.evt_section_link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    background: var(--evt-blue-soft);
    color: var(--evt-blue);
    font-weight: 800;
    white-space: nowrap;
}

.evt_section_link:hover {
    text-decoration: none;
    filter: saturate(1.08);
}

.evt_event_grid {
    row-gap: 0.9rem;
}

.evt_card_col {
    padding-left: 0.45rem !important;
    padding-right: 0.45rem !important;
}

.evt_card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.evt_card:hover {
    transform: translateY(-3px);
    border-color: rgba(45, 212, 191, 0.36);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
}

.evt_card_media {
    position: relative;
    min-height: 185px;
    padding: 0.72rem;
}

.evt_card_imgs {
    display: grid;
    grid-template-columns: 1fr 0.62fr;
    gap: 0.55rem;
    min-height: 174px;
}

.evt_card_img {
    width: 100%;
    height: 174px;
    object-fit: cover;
    border-radius: 18px;
    background: #e2e8f0;
}

.evt_card_img:only-child {
    grid-column: 1 / -1;
}

.evt_status {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    width: fit-content;
    padding: 0.42rem 0.66rem;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.evt_card_media .evt_status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.evt_status.is-live {
    background: rgba(220, 38, 38, 0.94);
}

.evt_status.is-upcoming {
    background: rgba(37, 99, 235, 0.94);
}

.evt_card_body {
    padding: 0 1rem 1rem;
}

.evt_store {
    color: var(--evt-green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.evt_card h3 {
    margin: 0.4rem 0 0.45rem;
    color: var(--evt-text);
    font-size: 1.12rem;
    line-height: 1.22;
    letter-spacing: -0.03em;
}

.evt_card h3 a {
    color: inherit;
    text-decoration: none;
}

.evt_card p {
    margin: 0;
    color: var(--evt-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.evt_card_actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.evt_action_btn {
    min-height: 36px;
    padding: 0.5rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--evt-green);
    font-size: 0.78rem;
    font-weight: 800;
}

.evt_action_btn:hover {
    color: var(--evt-green);
    background: rgba(15, 118, 110, 0.16);
    text-decoration: none;
}

.evt_visit_link {
    margin-left: auto;
    color: var(--evt-blue);
    font-size: 0.8rem;
    font-weight: 800;
}

.evt_visit_link:hover {
    color: #1d4ed8;
    text-decoration: none;
}

.evt_empty_state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 2rem 1rem;
    border: 1px dashed rgba(148, 163, 184, 0.42);
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 0%, rgba(45, 212, 191, 0.12), transparent 32%),
        rgba(248, 250, 252, 0.76);
    color: var(--evt-muted);
    text-align: center;
}

.evt_empty_icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.18), rgba(37, 99, 235, 0.14));
    color: var(--evt-green);
    font-size: 1.5rem;
}

.evt_empty_state h2 {
    margin: 0;
    color: var(--evt-text);
    font-size: 1.35rem;
}

.evt_empty_state p {
    max-width: 540px;
    margin: 0.7rem 0 1.15rem;
    line-height: 1.7;
}

.evt_loader_wrap {
    min-height: 54px;
}

#evt_toast {
    right: 1rem;
    bottom: 1rem;
    left: auto;
    width: min(360px, calc(100% - 2rem));
    border: 1px solid rgba(45, 212, 191, 0.24);
    border-radius: 18px;
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.26);
}

#evt_toast .toast-header {
    border: 0;
    background: transparent;
    color: inherit;
}

.carousel_full_navs {
    height: 100%;
    padding-top: 45vh;
    position: fixed;
    background: none;
    width: 15%;
    color: #fff;
    cursor: pointer;
    z-index: 2002;
}

#carousel_full_left {
    left: 0;
    padding-left: 2%;
}

#carousel_full_right {
    right: 0;
    padding-left: 10%;
}

#top_nav {
    text-align: center;
}

#top_nav button {
    color: var(--evt-blue);
    background: var(--evt-surface);
    margin: 5px 10px;
}

#top_nav button:hover {
    border: 1px solid var(--evt-blue);
}

@media (max-width: 991px) {
    .evt_live_page {
        margin-top: 1rem;
        border-radius: 28px;
    }

    .evt_hero,
    .global_event_hero {
        grid-template-columns: 1fr;
    }

    .evt_hero_panel {
        min-height: 140px;
    }

    .evt_section_header {
        flex-direction: column;
    }

    .global_event_section_head {
        display: block;
    }
}

@media (max-width: 767px) {
    .evt_live_page,
    .global_event_page {
        padding: 0.7rem;
        border-radius: 24px;
    }

    .evt_hero,
    .global_event_hero {
        padding: 1.1rem;
        border-radius: 24px;
    }

    .evt_hero h1,
    .global_event_hero h1 {
        font-size: 2rem;
    }

    .global_event_fact_row,
    .global_event_countdown {
        grid-template-columns: 1fr 1fr;
    }

    .global_event_products_notice {
        align-items: flex-start;
    }

    .slider-cover,
    .evt_section {
        padding: 0.85rem;
        border-radius: 24px;
    }

    .work .img {
        min-height: 300px;
        border-radius: 20px;
    }

    .evt_slide_text {
        padding: 1rem;
    }

    .evt_card_imgs {
        grid-template-columns: 1fr;
    }

    .evt_card_img {
        height: 180px;
    }

    .evt_visit_link {
        width: 100%;
        margin-left: 0;
    }

    .thumbnail li a img {
        width: 58px;
        height: 46px;
        border-radius: 14px;
    }
}
