/* ================= WRAPPER ================= */
.purple-hero-wrapper {
    background: rgba(245, 245, 245, 0.54);
    padding: 0 5px;
}

/* ================= HERO ================= */
.purple-hero {
    width: 100%;
    height: 105vh;
    margin: auto;
    border-radius: 28px 28px 0 0;
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* 👈 bottom se start */

    padding-bottom: 90px;
    /* 👈 yeh control karega kitna upar aaye */

    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ================= BACKGROUND ================= */
.purple-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.311), rgba(0, 0, 0, 0.333)),
        url("../images/banner3.webp") center/cover no-repeat;

    z-index: 0;
    animation: bgZoom 12s ease-in-out infinite alternate;
}

/* ================= CONTENT ================= */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;

    animation: floatText 4s ease-in-out infinite;
    /* 👈 floating effect back */
}

/* ================= HEADING ================= */
.purple-hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;

    opacity: 0;
    transform: translateY(40px);
    animation:
        slideUp 0.7s ease-out 0.2s forwards,
        whiteGlow 3s ease-in-out infinite alternate;
}

/* ================= TAGLINE ================= */
.tagline {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    overflow: hidden;

    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s ease-out 0.4s forwards;
}

/* shine effect */
.tagline::after {
    content: "";
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shine 4s infinite;
}

/* ================= ANIMATIONS ================= */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatText {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes whiteGlow {
    from {
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.15);
    }

    to {
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes bgZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

    .purple-hero {
        height: 75vh;
        padding-bottom: 70px;
    }

    .purple-hero h1 {
        font-size: 40px;
    }

    .tagline {
        font-size: 18px;
    }
}

/* ================= MOBILE FIX ================= */
@media (max-width: 600px) {

    .purple-hero-wrapper {
        padding: 0 5px;
    }

    .purple-hero {
        /* dvh ki jagah svh use karo — stable height */
        height: calc(100svh - 140px);
        border-radius: 28px 28px 0 0;
        margin-bottom: 20px;
        padding-bottom: 60px;
    }

    /* zoom animation completely band */
    .purple-hero::before {
        animation: none;
        transform: scale(1);
        /* background fixed nahi, scroll ke saath move kare */
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    /* float animation bhi band — mobile pe performance better */
    .hero-content {
        animation: none;
    }

    .purple-hero h1 {
        font-size: 32px;
    }

    .tagline {
        font-size: 15px;
    }
}


/* From Uiverse.io by ilkhoeri */
.button {
    --h-button: 48px;
    --w-button: 102px;
    --round: 0.75rem;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.25s ease;
    background: radial-gradient(65.28% 65.28% at 50% 100%,
            rgba(223, 113, 255, 0.8) 0%,
            rgba(223, 113, 255, 0) 100%),
        linear-gradient(0deg, #7a5af8, #7a5af8);
    border-radius: var(--round);
    border: none;
    outline: none;
    padding: 12px 18px;
}

.button::before,
.button::after {
    content: "";
    position: absolute;
    inset: var(--space);
    transition: all 0.5s ease-in-out;
    border-radius: calc(var(--round) - var(--space));
    z-index: 0;
}

.button::before {
    --space: 1px;
    background: linear-gradient(177.95deg,
            rgba(255, 255, 255, 0.19) 0%,
            rgba(255, 255, 255, 0) 100%);
}

.button::after {
    --space: 2px;
    background: radial-gradient(65.28% 65.28% at 50% 100%,
            rgba(223, 113, 255, 0.8) 0%,
            rgba(223, 113, 255, 0) 100%),
        linear-gradient(0deg, #7a5af8, #7a5af8);
}

.button:active {
    transform: scale(0.95);
}

.fold {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    height: 1rem;
    width: 1rem;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    background: radial-gradient(100% 75% at 55%,
            rgba(223, 113, 255, 0.8) 0%,
            rgba(223, 113, 255, 0) 100%);
    box-shadow: 0 0 3px black;
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: var(--round);
}

.fold::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150%;
    height: 150%;
    transform: rotate(45deg) translateX(0%) translateY(-18px);
    background-color: #e8e8e8;
    pointer-events: none;
}

.button:hover .fold {
    margin-top: -1rem;
    margin-right: -1rem;
}

.points_wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.points_wrapper .point {
    bottom: -10px;
    position: absolute;
    animation: floating-points infinite ease-in-out;
    pointer-events: none;
    width: 2px;
    height: 2px;
    background-color: #fff;
    border-radius: 9999px;
}

@keyframes floating-points {
    0% {
        transform: translateY(0);
    }

    85% {
        opacity: 0;
    }

    100% {
        transform: translateY(-55px);
        opacity: 0;
    }
}

.points_wrapper .point:nth-child(1) {
    left: 10%;
    opacity: 1;
    animation-duration: 2.35s;
    animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(2) {
    left: 30%;
    opacity: 0.7;
    animation-duration: 2.5s;
    animation-delay: 0.5s;
}

.points_wrapper .point:nth-child(3) {
    left: 25%;
    opacity: 0.8;
    animation-duration: 2.2s;
    animation-delay: 0.1s;
}

.points_wrapper .point:nth-child(4) {
    left: 44%;
    opacity: 0.6;
    animation-duration: 2.05s;
}

.points_wrapper .point:nth-child(5) {
    left: 50%;
    opacity: 1;
    animation-duration: 1.9s;
}

.points_wrapper .point:nth-child(6) {
    left: 75%;
    opacity: 0.5;
    animation-duration: 1.5s;
    animation-delay: 1.5s;
}

.points_wrapper .point:nth-child(7) {
    left: 88%;
    opacity: 0.9;
    animation-duration: 2.2s;
    animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(8) {
    left: 58%;
    opacity: 0.8;
    animation-duration: 2.25s;
    animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(9) {
    left: 98%;
    opacity: 0.6;
    animation-duration: 2.6s;
    animation-delay: 0.1s;
}

.points_wrapper .point:nth-child(10) {
    left: 65%;
    opacity: 1;
    animation-duration: 2.5s;
    animation-delay: 0.2s;
}

.inner {
    z-index: 2;
    gap: 6px;
    position: relative;
    width: 100%;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.2s ease-in-out;
}

.inner svg.icon {
    width: 18px;
    height: 18px;
    transition: fill 0.1s linear;
}

.button:focus svg.icon {
    fill: white;
}

.button:hover svg.icon {
    fill: transparent;
    animation:
        dasharray 1s linear forwards,
        filled 0.1s linear forwards 0.95s;
}

@keyframes dasharray {
    from {
        stroke-dasharray: 0 0 0 0;
    }

    to {
        stroke-dasharray: 68 68 0 0;
    }
}

@keyframes filled {
    to {
        fill: white;
    }
}

/* ===== TABLET ===== */
@media (max-width: 900px) {
    .button {
        padding: 11px 18px;
    }

    .inner {
        font-size: 15px;
    }

    .inner svg.icon {
        width: 17px;
        height: 17px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
    .button {
        padding: 10px 16px;
    }

    .inner {
        font-size: 14px;
    }

    .inner svg.icon {
        width: 16px;
        height: 16px;
    }
}




.image-section {
    /* background: #0f0f0f; */
    padding: 20px 0;
    overflow: hidden;
}

.image-title {
    text-align: center;
    margin-bottom: 10px;
}

.image-title span {
    display: inline-block;
    color: #fff;
    background: #000;

    padding: 8px 18px;
    border-radius: 20px;

    font-size: 25px;
    font-weight: 600;
}

/* wrapper */
.image-marquee {
    overflow: hidden;
}

/* track */
.image-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scroll 35s linear infinite;
    will-change: transform;
}

/* images */
.image-track img {
    width: 220px;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

/* animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* pause on hover */
.image-marquee:hover .image-track {
    animation-play-state: paused;
}

/* responsive */
@media (max-width: 768px) {
    .image-track img {
        width: 150px;
        height: 260px;
    }
}


/* TRACK BASE */
.image-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

/* TOP ROW (left scroll) */
.image-marquee:not(.reverse) .image-track {
    animation: scrollLeft 40s linear infinite;
}

/* BOTTOM ROW (right scroll) */
.image-marquee.reverse .image-track {
    animation: scrollRight 40s linear infinite;
}

/* LEFT SCROLL */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* RIGHT SCROLL */
@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}


/* past event */
.pe-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0f0f0f;
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid rgba(122, 90, 248, 0.4);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.pe-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(122, 90, 248, 0.08), transparent);
    transform: translateX(-100%);
    animation: pe-shine 3s ease-in-out infinite;
}

@keyframes pe-shine {
    0% {
        transform: translateX(-100%);
    }

    50%,
    100% {
        transform: translateX(100%);
    }
}

.pe-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7a5af8;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(122, 90, 248, 0.5);
    animation: pe-pulse 2s ease-out infinite;
}

@keyframes pe-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(122, 90, 248, 0.5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(122, 90, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(122, 90, 248, 0);
    }
}

.pe-text {
    color: #a89df0;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.pe-emoji {
    font-size: 15px;
    animation: pe-bounce 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes pe-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@media (max-width: 600px) {
    .pe-badge {
        padding: 10px 20px;
        gap: 10px;
    }

    .pe-text {
        font-size: 11px;
        letter-spacing: 2px;
    }
}




/* ---- SECTION ---- */
.wwo-section {
    padding: 20px 10px 40px;
    background: #fff;
}

/* ---- HEADING ---- */
.wwo-heading {
    width: fit-content;
    margin: 10px auto 6px;
    font-size: 150px;
    font-weight: 800;
    color: #111111e1;
    border-bottom: 1px dotted #111111c3;
    padding-bottom: 6px;
    line-height: 1;
}

/* ---- SUBTITLE ---- */
.wwo-sub {
    text-align: center;
    color: #888;
    font-size: 15px;
    letter-spacing: 1px;
    margin: 0 0 20px;
}

/* ---- TAGS WRAPPER ---- */
.wwo-tags {
    display: flex;
    gap: 8px;
    padding: 10px;
    overflow-x: auto;
}

/* hide scrollbar */
.wwo-tags::-webkit-scrollbar {
    display: none;
}

/* ---- SINGLE TAG ---- */
.wwo-tag {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 999px;
    background: #0f0f0fe2;
    border: 1px solid rgba(122, 90, 248, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: max-content;
    position: relative;
    overflow: hidden;
}

/* shimmer on hover */
.wwo-tag::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(120deg, transparent, rgba(122, 90, 248, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.wwo-tag:hover::before {
    transform: translateX(100%);
}

.wwo-tag:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(122, 90, 248, 0.9);
}

.wwo-tag:active {
    transform: scale(0.95);
}

/* ---- TAG ICON ---- */
.wwo-tag-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}


/* ================================================
   DESKTOP — min 768px
   ================================================ */
@media (min-width: 768px) {
    .wwo-tags {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: hidden;
        gap: 10px;
        padding: 10px 20px;
    }

    .wwo-tag {
        font-size: 17px;
        padding: 10px 22px;
    }

    .wwo-tag-icon {
        width: 24px;
        height: 24px;
    }
}


/* ================================================
   TABLET — max 768px
   ================================================ */
@media (max-width: 768px) {
    .wwo-heading {
        font-size: 80px;
    }

    .wwo-sub {
        font-size: 14px;
    }

    .wwo-tag {
        font-size: 15px;
        padding: 9px 16px;
    }

    .wwo-tag-icon {
        width: 20px;
        height: 20px;
    }
}


/* ================================================
   MOBILE — max 480px
   ================================================ */
@media (max-width: 480px) {
    .wwo-section {
        padding: 16px 8px 32px;
    }

    .wwo-heading {
        font-size: 48px;
        margin-bottom: 4px;
    }

    .wwo-sub {
        font-size: 13px;
        margin-bottom: 14px;
        letter-spacing: 0.5px;
    }

    .wwo-tags {
        gap: 6px;
        padding: 8px;
    }

    .wwo-tag {
        font-size: 13px;
        padding: 7px 14px;
        gap: 6px;
    }

    .wwo-tag-icon {
        width: 18px;
        height: 18px;
    }
}


/* ================================================
   VENUE SECTION — showzz.in
   ================================================ */

.vs-section {
    background: #111;
    padding: 72px 24px;
}

.vs-inner {
    max-width: 960px;
    margin: 0 auto;
}

/* ---- TOP ---- */
.vs-top {
    text-align: center;
    margin-bottom: 44px;
}

.vs-badge {
    display: inline-block;
    background: rgba(122, 90, 248, 0.12);
    color: #b8aff5;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid rgba(122, 90, 248, 0.3);
    margin-bottom: 20px;
}

.vs-title {
    font-size: 46px;
    font-weight: 800;
    color: #f0f0f0;
    line-height: 1.2;
    margin: 0;
}

.vs-title span {
    color: #7a5af8;
}

/* ---- CARDS ---- */
.vs-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.vs-card {
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 24px 18px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.vs-card:hover {
    transform: translateY(-5px);
    border-color: rgba(122, 90, 248, 0.5);
    background: #202020;
}

.vs-card-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
}

.vs-card-name {
    color: #ececec;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
}

.vs-card-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.65;
    margin: 0;
}

/* ---- STEPS ---- */
.vs-steps {
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 30px 32px;
    margin-bottom: 28px;
}

.vs-steps-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 22px;
}

.vs-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.vs-step:last-child {
    margin-bottom: 0;
}

.vs-step-num {
    width: 28px;
    height: 28px;
    background: rgba(122, 90, 248, 0.15);
    border: 1px solid rgba(122, 90, 248, 0.4);
    border-radius: 50%;
    color: #9b85f5;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.vs-step-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.vs-step-text b {
    color: #ececec;
    font-weight: 600;
}

/* ---- PROOF ---- */
.vs-proof {
    display: flex;
    justify-content: center;
}

.vs-proof-item {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    letter-spacing: 0.5px;
}


/* ================================================
   TABLET — max 992px
   ================================================ */
@media (max-width: 992px) {

    .vs-section {
        padding: 56px 20px;
    }

    .vs-title {
        font-size: 34px;
    }

    .vs-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .vs-steps {
        padding: 26px 24px;
    }
}


/* ================================================
   MOBILE — max 600px
   ================================================ */
@media (max-width: 600px) {

    .vs-section {
        padding: 40px 14px;
    }

    .vs-badge {
        font-size: 10px;
        padding: 6px 14px;
        letter-spacing: 1.5px;
    }

    .vs-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .vs-top {
        margin-bottom: 28px;
    }

    .vs-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 20px;
    }

    .vs-card {
        padding: 16px 12px;
    }

    .vs-card-icon {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .vs-card-name {
        font-size: 13px;
    }

    .vs-card-info {
        font-size: 11px;
    }

    .vs-steps {
        padding: 20px 16px;
        margin-bottom: 20px;
    }

    .vs-steps-label {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .vs-step {
        gap: 12px;
        margin-bottom: 16px;
    }

    .vs-step-num {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .vs-step-text {
        font-size: 13px;
    }

    .vs-proof-item {
        font-size: 12px;
        text-align: center;
    }
}



















/* =========================================
   VIDEO SECTION
========================================= */

.event-video-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    padding: 20px;

    width: 100%;
}

/* =========================================
   VIDEO BOX
========================================= */

.event-video-box {
    position: relative;

    border-radius: 28px;

    overflow: hidden;

    cursor: pointer;

    isolation: isolate;

    transition: 0.45s ease;
}

/* premium border glow */
.event-video-box::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: 28px;

    border: 1px solid rgba(122, 90, 248, 0.45);

    opacity: 0;

    transition: 0.4s ease;

    z-index: 5;

    pointer-events: none;

    box-shadow:
        0 0 20px rgba(122, 90, 248, 0.18),
        inset 0 0 20px rgba(122, 90, 248, 0.12);
}

.event-video-box:hover::before {
    opacity: 1;
}

.event-video-box:hover {
    transform: translateY(-10px);
}

/* =========================================
   VIDEO
========================================= */

.event-video-card {
    width: 100%;
    height: 540px;

    display: block;

    object-fit: cover;

    border-radius: 28px;

    background: #000;

    transition:
        transform 0.5s ease,
        filter 0.4s ease;
}

/* cinematic zoom */
.event-video-box:hover .event-video-card {
    transform: scale(1.05);
}

/* =========================================
   OVERLAY
========================================= */

.video-overlay {
    position: absolute;
    inset: 0;

    border-radius: 28px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.45),
            transparent 45%);

    z-index: 2;

    pointer-events: none;
}

/* =========================================
   SOUND BUTTON
========================================= */

.video-sound-btn {
    position: absolute;

    bottom: 18px;
    right: 18px;

    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.14);

    overflow: hidden;

    cursor: pointer;

    z-index: 10;

    transition: all 0.35s ease;

    animation: soundPulse 2.8s infinite;
}

/* glow */
.video-sound-btn::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: 50%;

    background: linear-gradient(135deg,
            rgba(122, 90, 248, 0.85),
            rgba(255, 255, 255, 0.08));

    opacity: 0;

    transition: 0.35s ease;
}

.video-sound-btn:hover::before {
    opacity: 1;
}

.video-sound-btn:hover {
    transform: scale(1.08);

    box-shadow:
        0 0 25px rgba(122, 90, 248, 0.45),
        0 12px 35px rgba(122, 90, 248, 0.28);
}

/* icon */
.video-sound-btn span {
    position: relative;
    z-index: 2;

    color: #fff;

    font-size: 18px;
}

/* pulse */
@keyframes soundPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(122, 90, 248, 0.35);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(122, 90, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(122, 90, 248, 0);
    }

}

/* =========================================
   LARGE TABLET
========================================= */

@media(max-width:1200px) {

    .event-video-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-video-card {
        height: 500px;
    }

}

/* =========================================
   TABLET
========================================= */

@media(max-width:768px) {

    .event-video-wrap {
        grid-template-columns: repeat(2, 1fr);

        gap: 14px;

        padding: 14px;
    }

    .event-video-box {
        border-radius: 22px;
    }

    .event-video-card {
        height: 420px;

        border-radius: 22px;
    }

    .video-overlay {
        border-radius: 22px;
    }

    .video-sound-btn {
        width: 46px;
        height: 46px;

        bottom: 14px;
        right: 14px;
    }

    .video-sound-btn span {
        font-size: 16px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:600px) {

    .event-video-wrap {
        display: flex;

        overflow-x: auto;

        gap: 14px;

        padding: 10px 12px;

        scroll-snap-type: x mandatory;
    }

    .event-video-wrap::-webkit-scrollbar {
        display: none;
    }

    .event-video-box {
        width: 78vw;
        min-width: 78vw;

        flex-shrink: 0;

        scroll-snap-align: center;

        border-radius: 22px;
    }

    .event-video-card {
        width: 100%;
        height: 420px;

        border-radius: 22px;
    }

    .video-overlay {
        border-radius: 22px;
    }

    .video-sound-btn {
        width: 44px;
        height: 44px;

        bottom: 12px;
        right: 12px;
    }

    .video-sound-btn span {
        font-size: 15px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:420px) {

    .event-video-box {
        width: 84vw;
        min-width: 84vw;
    }

    .event-video-card {
        height: 390px;
    }

}

/* MOBILE */
@media(max-width:600px){

    .event-video-box:hover{
        transform:none;
    }

    .event-video-box:hover .event-video-card{
        transform:none;
    }

    .event-video-box:hover::before{
        opacity:0;
    }

}