main {
    background-color: #000;
    margin-top: 0px !important;
    font-family: "Archivo", sans-serif !important;
}

section {
    overflow: hidden;
}

.text-gray {
    color: #878C91;
}

.relative {
    position: relative !important;
}

.v-line {
    display: block !important;
    width: 1px !important;
    height: 200px !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    margin-right: 40px !important;
}

.logo-main {
    max-width: 280px;
    height: auto;
}

.date-text {
    font-weight: 800;
    line-height: 1;
}

.date-text .days {
    font-size: 80px;
    letter-spacing: -2px;
}

.date-text .month {
    font-size: 60px;
    text-transform: uppercase;
    display: block;
}

.date-text .venue {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
}

.year-text {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    text-align: left;
}

.photo-card {
    border-radius: 20px;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transform: translateZ(0);
    -webkit-transform: translateZ(0);

    will-change: backdrop-filter, transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}

.info-box-gradient {
    position: relative;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 900px;
    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2),
        0 10px 25px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;
}

.info-box-gradient i,
.info-box-gradient svg,
.info-box-gradient img {
    margin-right: 20px;
    color: #fff;
}

.info-box-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.bg-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.map {
    width: 100%;
    height: 400px;
}

.title-underline {
    text-decoration: underline;
    text-underline-offset: 8px;
}

.line-gradient-motif {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 20px;
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.section-title {
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.section-underscore {
    height: 4px;
    background-color: #fff;
    width: 100%;
    margin-top: 15px;
}

.overlay-shadow-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0) 100%);

    z-index: 1;

    pointer-events: none;
}

.photo-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 12px;

    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        inset 0 0 5px rgba(255, 255, 255, 0.1),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2),
        0 5px 25px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;
}

.photo-box img {
    width: 180px;
}

.marqueue-section {
    background: linear-gradient(180deg, rgb(2, 36, 75) 0%, rgb(3, 53, 111) 100%);
}

.bg-marqueue {
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee-animation 20s linear infinite;
    flex-shrink: 0;
    margin-right: 40px;
}

.marquee-content-2 {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee-animation-reverse 20s linear infinite;
    flex-shrink: 0;
    margin-right: 40px;
}

.dot-spacer {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    opacity: 0.8;
}

.dot-spacer-2 {
    width: 24px;
    height: 24px;
    background-color: #157AEA;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    opacity: 0.8;
}

.marquee-content h5,
.marquee-content-2 h5 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-content-2 h5 {
    color: #157AEA;
}

@keyframes marquee-animation {
    from {
        transform: translateX(0);
    }

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

@keyframes marquee-animation-reverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* .bg-marqueue:hover .marquee-content {
    animation-play-state: paused;
} */


.lottie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; 
    overflow: hidden;
    opacity: 0.6; 
    mix-blend-mode: screen;
}


.swiper-button-next,
.swiper-button-prev {
    background: #043D7C;
    width: 34px !important;
    height: 34px !important;
    border-radius: 4px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
    position: absolute;
    top: 92% !important;
}

.swiper-button-next {
    right: 30px !important;
}

.swiper-button-prev {
    left: 91.5% !important;
}


.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px !important;
    color: #fff;
    font-weight: bold;
}

.swiper-container .swiper-slide img {
    filter: contrast(0.5);
}

.swiper-container .swiper-slide-active img {
    filter: contrast(1);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    background: #888888 !important; 
    opacity: 0.6 !important;        
    cursor: not-allowed;            
    pointer-events: auto !important; 
}

.swiper-pagination {
    padding-left: 20px;
    display: flex !important;
    justify-content: start;
    align-items: center;
    gap: 0 !important; 
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 8px !important;
    background-color: #1a1a1a !important; 
    opacity: 1 !important;
    margin: 0 !important;
    border-radius: 0 !important; 
    transition: 
        width 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
        background-color 0.5s ease,
        border-radius 0.5s ease !important;
    position: relative;
    z-index: 1;
}

.swiper-pagination-bullet:first-child {
    border-radius: 20px 0 0 20px !important;
}

.swiper-pagination-bullet:last-child {
    border-radius: 0 20px 20px 0 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ffffff !important;
    width: 35px !important;         
    border-radius: 20px !important; 
    z-index: 10 !important;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    z-index: 1;
}


/* Animasi salju SVG */
.wrapper-content-snowfall .snowfall circle,
.wrapper-content-snowfall .snowfall path {
  animation-name: snowfall;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  opacity: 0;
}

/* Memberikan delay berbeda untuk setiap elemen */
.wrapper-content-snowfall .snowfall circle:nth-child(odd),
.wrapper-content-snowfall .snowfall path:nth-child(odd) {
  animation-delay: 1s;
}

.wrapper-content-snowfall .snowfall circle:nth-child(even),
.wrapper-content-snowfall .snowfall path:nth-child(even) {
  animation-delay: 3s;
}

.wrapper-content-snowfall .snowfall circle:nth-child(3n),
.wrapper-content-snowfall .snowfall path:nth-child(3n) {
  animation-delay: 5s;
}

.wrapper-content-snowfall .snowfall circle:nth-child(5n),
.wrapper-content-snowfall .snowfall path:nth-child(5n) {
  animation-delay: 7s;
}

@keyframes snowfall {
  0% {
    transform: translateY(-30px) translateX(-10px);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(500px) translateX(10px);
    opacity: 0;
  }
}