.header-container {
    width: 70%;
    max-width: 1320px;
    height: 46rem;
    position: relative;
    top: -2rem;
    opacity: 0;
    animation: headerBounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation-delay: 0.3s;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

/* .curved-text {
    position: absolute;
    top: 4rem;
} */

.heading-text1 {
    font-family: 'Nunito', sans-serif;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
    color: white;
    text-align: center;
}

.heading-text2 {
    font-size: 50px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    letter-spacing: -5px;
}

.thousand-dollars {
    color: #FFC800;
}

/* .contest-name {
    position: absolute;
    top: 0rem;
} */

svg text {
    font-family: 'Nunito', sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -3px;
}

.pop-up-background {
    position: fixed;
    /* instead of relying only on ::before */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* When active, show popup */
.pop-up-background.active {
    display: flex;
}

html.popup-active,
body.popup-active {
    overflow: hidden;
}


.popup-container {
    width: 579px;
    height: auto;
    background-color: #121216;
    border-radius: 32px;
    border: 0.5px solid #FFFFFF6E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    gap: 1.5rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    z-index: 10000000;
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    z-index: 10;
}

.heading-and-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.popup-container .heading {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    line-height: 33px;
    letter-spacing: -5%;
    text-align: center;
    color: white;
}

.popup-container .content {
    color: #FFFFFF;
    opacity: 0.6;
    text-align: center;
}

.video-upload-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.upload-video {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.video-link-field {
    background: #29292A;
    width: 100%;
    border: 1px solid #00000A;
    padding: 14px;
    border-radius: 16px;
    color: white;
    font-family: Nunito;
}

.submit-video-button {
    background: linear-gradient(#004CE2, #013FB7);
    width: 100%;
    padding: 14px;
    border: 0px;
    border-radius: 14px;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 33px;
}

.sub-header-container {
    width: 100%;
    height: 506.88px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
}

.progressive-slider-component {
    width: 55%;
    max-width: 550px;
    height: 55px;
}

.cash-over-price-icon {
    position: absolute;
    left: 42%;
    top: 29%;
    width: 3rem;
    height: 3rem;
}

.price-icon {
    /* position: relative; */
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* top: 33%; */
    height: 30%;
    /* left: 50%; */
    /* transform: translateX(-50%) translate(var(--px, 0px), var(--py, 0px)) translateY(var(--slideY, 0px)) scaleX(var(--sx, 1)); */
    will-change: transform;
    transform-style: preserve-3d;
}

.price-icon img[alt="price_cup"] {
    position: absolute;
    top: 33%;
    z-index: 2;
    transition: transform 0.3s ease;
    /* smooth rotation */
}

.price-money-group {
    width: 12rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* background-color: rebeccapurple; */
    top: -17%;
    left: -2%;
}

.price_cup_money_1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s ease;
}

.price_cup_money_2 {
    position: absolute;
    left: 7%;
    transition: all 0.5s ease;
}

.price_cup_money_3 {
    position: absolute;
    right: 9%;
    z-index: -1;
    transition: all 0.5s ease;
}

.price-icon img[alt="price_cup_money"] {
    position: absolute;
    top: -25%;
    z-index: 10000000;
    transition: transform 0.3s ease;
}

/* Apply hover effect when parent is hovered */
.price-icon:hover img[alt="price_cup"] {
    transform: rotate(5deg);
    transition: all 0.5s ease;
}

.price-icon:hover .price_cup_money_2 {
    transform: rotate(-15deg);
    left: 7%;
    transition: all 0.5s ease;
    /* top: -5%; */
}

.price-icon:hover .price_cup_money_1 {
    transform: rotate(25deg);
    left: 26%;
    transition: all 0.5s ease;
    /* top: -5%; */
}

.price-icon:hover .price_cup_money_3 {
    transform: rotate(10deg);
    right: 3%;
    transition: all 0.5s ease;
}

.price-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/static/home/images/sun_rays.d7aa513bf48e.svg") center/cover no-repeat;
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity 0.3s ease;
    z-index: 0;
    background-size: 15rem;
    border-radius: 50%;
    width: 23rem;
    height: 20rem;
    top: -50%;
    left: -10%;
}

.price-icon:hover::before {
    opacity: 1;
    animation: spin 6s linear infinite;
}

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

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

.flip-clock-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 1rem;
}

.join-challenge-btn {
    background-color: white;
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 34.9px;
    letter-spacing: -6%;
    text-align: center;
    padding: 8px 24px;
    color: black;
}

a {
    text-decoration: none;
}

.participant-count {
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: auto;
    gap: 1rem;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -1px;
    text-align: center;
}

.profile-stack {
    display: flex;
    align-items: center;
}

.circle {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -12px;
    /* overlap from the left */
    background-color: #ffb300;
    position: relative;
}

/* Make earlier images stay above later ones */
.circle:nth-child(1) {
    z-index: 4;
}

.circle:nth-child(2) {
    z-index: 3;
}

.circle:nth-child(3) {
    z-index: 2;
}

.circle:nth-child(4) {
    z-index: 1;
}

/* Remove negative margin from the first one */
.circle:first-child {
    margin-left: 0;
}

.description {
    width: 55%;
    color: white;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    margin-top: -0.8rem;
}

.description::before {
    content: 'Join our exclusive creator challenge and showcase your talent to millions. Reach milestones, climb the leaderboard, and win amazing prizes!';
}

.description.auth::before {
    content: 'Stay in the loop! Join our Telegram group to get all the contest updates and more!';
}

.join-telegram-container {
    width: auto;
    height: 4rem;
    gap: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-telegram-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 18.33px;
    text-align: center;
    color: white;
    text-decoration: none;
    border: 0.5px solid white;
    padding: 8px 14px;
    transition: transform 0.3s ease;
}

.join-telegram-btn:hover {
    color: white;
    cursor: pointer;
    transform: scale(1.05);
}

.join-instagram-channel {
    padding: 10px 18px;
    background: linear-gradient(to right, #FEB613, #FF9B0E, #FF3E16, #FF0D95, #A60DFF);
    color: white;
    text-decoration: none;
    border-radius: 18px;
    display: flex;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 18.33px;
    text-align: center;
}

.join-instagram-channel:hover {
    color: white;
    cursor: pointer;
    transform: scale(1.05);
}

/* Header slide-in animations - FIXED VERSION */
@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(150px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottomWithTransform {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(150px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideInFromBottomWithTransformSmooth {
    0% {
        opacity: 0;
        --slideY: 100px;
    }

    30% {
        opacity: 0.3;
        --slideY: 60px;
    }

    60% {
        opacity: 0.7;
        --slideY: 20px;
    }

    100% {
        opacity: 1;
        --slideY: 0px;
    }
}

/* Initial hidden state and animations - Fast 1.5s total sequence */
/* Header child elements appear quickly after header animation */
svg {
    opacity: 0;
    animation: slideInFromBottom 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
}

.price-icon {
    opacity: 0;
    animation: slideInFromBottomWithTransformSmooth 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.7s;
    /* After header starts */
}

.flip-clock-container {
    opacity: 0;
    animation: slideInFromBottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.9s;
    /* Quick succession */
}

.progressive-slider-component {
    opacity: 0;
    animation: slideInFromBottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.9s;
    /* Same time as flip-clock */
}

.join-challenge-btn {
    opacity: 0;
    animation: slideInFromBottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.9s;
    /* Same time as flip-clock and slider */
}

.participant-count {
    opacity: 0;
    animation: slideInFromBottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 1.1s;
    /* Final group - completes by 1.5s */
}

.description {
    opacity: 0;
    animation: slideInFromBottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 1.1s;
    /* Same time as participant-count */
}

.join-telegram-container {
    opacity: 0;
    animation: slideInFromBottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 1.3s;
}

.leaderboard-ranks {
    position: relative;
    width: 1050px;
    max-width: 1320px;
    height: 55.5rem;
    background: #D9EEF7;
    border-radius: 51px;
    padding: 20px;
    box-shadow: 0px 8px 30.3px 0px #2573958C;
    margin-top: -1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.leaderboard_image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
    width: 426px;
    height: 147px;
}

.leader-rank-inner-container {
    margin-top: 5rem;
    width: 100%;
    height: auto;
    min-height: 80%;
    background-color: #8BC5DE;
    border-radius: 2rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: inset 0 4px 10px #00000040;
}

/* Top 3 participants styles */
.top-3-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.top-participant {
    background: #FFE474;
    border-radius: 1rem;
    padding: 1rem 0;
    text-align: center;
    position: relative;
    flex: 1;
    display: flex;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: black;
    box-shadow: inset 0 4px 10px #FFFFFF;
}

.rank-and-profile {
    width: 26rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.top-participant.rank-2 {
    background: #FFE474;
}

.top-participant.rank-3 {
    background: #FFE474;
}

.profile-picture-name {
    display: flex;
    align-items: center;
    width: 14rem;
    background-color: #FDCA00;
    border-radius: 4rem;
    height: 2.5rem;
    padding: 0 6px;
}

.badge-container {
    /* position: absolute; */
    /* top: -15px; */
    left: 0%;
    /* transform: translateX(-50%); */
}

.rank-badge {
    width: 4rem;
    height: 3rem;
}

.profile-pic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.profile-pic-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ffb300;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin: 0.5rem;
    border: 3px solid white;
}

.profile-pic-small {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    position: relative;
    overflow: hidden;
}

.profile-pic-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-pic-small .profile-pic-circle {
    width: 100%;
    height: 100%;
    margin: 0;
    border: none;
    font-size: 10px;
    background-color: #ffb300;
}

.profile-pic-small:first-child {
    margin-left: 0;
}

.profile-pic-small:nth-child(1) {
    z-index: 4;
}

.profile-pic-small:nth-child(2) {
    z-index: 3;
}

.profile-pic-small:nth-child(3) {
    z-index: 2;
}

.participant-name {
    margin-left: 0.5rem;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    font-style: Bold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -6%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.participant-stats {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.no-of-videos-stat {
    background-color: white;
    min-width: 5.5rem;
    border-radius: 1.8rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding: 6px 14px;
}

.price-money-stat {
    background-color: white;
    min-width: 7rem;
    gap: 1rem;
    border-radius: 1.8rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 14px;
    padding: 6px 14px;
}

.views-stat {
    width: 8rem;
    border-radius: 1.8rem;
    display: flex;
    align-items: center;
    padding: 6px 0px;
    color: #983301;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -6%;
}

.views-stat img {
    margin-left: 0.5rem;
    width: 24px;
    height: 17px;
}

.no-of-views {
    margin-left: 0.5rem;
}

/* Regular participants styles */
.regular-participants {
    border-radius: 1rem;
    overflow: hidden;
    margin-top: -3rem;
}

.participant-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #FFFFFF45;
    margin-bottom: 1rem;
    border-radius: 11px;
    height: 5rem;
}

.regular-rank-and-profile {
    width: 23rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.regular-rank-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5.5rem;
    height: 4rem;
    font-weight: bold;
    color: #333;
}

.regular-profile-picture-name {
    display: flex;
    align-items: center;
    width: 14rem;
    border-radius: 4rem;
    height: 2.5rem;
    color: black;
    background: #FFFFFF4A;
    padding-left: 0.5rem;
}

.regular-participant-stats {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.participant-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.rank-cell {
    text-align: center;
    font-weight: bold;
    color: #333;
}

.creator-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.creator-cell .profile-pic,
.creator-cell .profile-pic-circle {
    width: 40px;
    height: 40px;
    margin: 0;
    border: 1px solid #ddd;
}

.creator-cell .profile-pic-circle {
    font-size: 16px;
}

.creator-name {
    font-weight: 500;
    color: #333;
}

.money-cell {
    text-align: center;
    background-color: white;
    width: 6rem;
    border-radius: 1.8rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 6px 0px;
    margin-left: 3rem;
}

.stat-value {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -6%;
}

.videos-cell {
    text-align: center;
    background-color: white;
    width: 6rem;
    border-radius: 1.8rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 6px 0px;
    margin-left: 3rem;
}

.regular-views-stat {
    color: black;
    display: flex;
    align-items: center;
    width: 6rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -6%;
}

.regular-views-stat img {
    width: 18px;
    height: 12px;
}

.video-count {
    background-color: #e74c3c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: bold;
}

.money-amount {
    background-color: #27ae60;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: bold;
}

.views-count {
    color: #7f8c8d;
    font-weight: 500;
}

.leaderboard-rank-bottom-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.leaderboard-rank-bottom-bar:has(:only-child) {
    height: 4rem;
    margin-top: 0;
    gap: 1rem;
}

.total-count-of-participants {
    display: flex;
    align-items: center;
    width: 15rem;
    justify-content: space-evenly;
}

/* Pagination styles */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 35%;
    width: auto;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    flex: 1;
    margin: 0 0.5rem;
    scroll-behavior: smooth;
    /* Add this line */
}

.pagination-numbers::-webkit-scrollbar {
    height: 6px;
}

.pagination-numbers::-webkit-scrollbar-track {
    background: transparent;
}

.pagination-numbers::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 3px;
}

.pagination-numbers::-webkit-scrollbar-thumb:hover {
    background-color: #bbb;
}

.nav-btn,
.page-btn {
    border: 0px;
    background-color: transparent;
    color: black;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enabled nav-btn styling - white background */
.nav-btn:not(.disabled) {
    background-color: white;
    border-radius: 38px;
    width: 4rem;
    height: 3rem;
    opacity: 1;
}

/* Disabled nav-btn styling - white background with low opacity */
.nav-btn.disabled {
    width: 4rem;
    height: 3rem;
    background-color: white;
    opacity: 0.4;
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: not-allowed;
}

.page-btn.active {
    background-color: white;
    color: black;
    border-radius: 50%;
    text-decoration: none;
    width: 1rem;
    height: 2.5rem;
}

.nav-btn {
    font-size: 1.2rem;
    font-weight: bold;
}

.leaderboard-ranks.empty {
    height: auto;
    min-height: 15rem;
}

.leaderboard-ranks.empty .leader-rank-inner-container {
    min-height: 70%;
}

.empty-leaderboard-message {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 28px;
    line-height: 39px;
    text-align: center;
    padding: 4rem 2rem;
    height: 100%;
    min-height: 10rem;
}

.top-3-videos-heading {
    /* border-radius: 18px; */
    padding: 6px;
    width: 400px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-container {
    height: 100%;
    width: 25rem;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-container img {
    width: 25rem;
}

.top-3-videos-container {
    width: 90%;
    max-width: 1440px;
    height: 37.64rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.video-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-tabs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 1080px;
    height: 40rem;
    overflow-x: auto;
    gap: 2rem;
    overflow-y: hidden;
    scrollbar-width: none;
}

.video-tabs::-webkit-scrollbar {
    display: none;
}

/* Make each video block inline-flex so they don't stack vertically */
.video-tabs>div {
    flex: 0 0 auto;
}

.sub-content-wrapper {
    width: 100%;
    min-height: 13rem;
    height: auto;
    /* background-color: rebeccapurple; */
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.rule-book-container {
    width: 1050px;
    max-width: 1320px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 38px;
    border: 1px solid;
    border-image: linear-gradient(#FFFFFF, #0B161C);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.rule-book-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rule-book-heading {
    width: 24%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 38.42px;
    line-height: 30.19px;
    letter-spacing: -1px;
}

.divider {
    width: 100%;
    height: 0.1px;
    background-color: #000000;
    margin-top: 36px;
    margin-bottom: 36px;
}

.rules {
    width: 80%;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-style: Medium;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -4%;
    color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.3s ease 0.1s,
        transform 0.3s ease 0.1s;
}

.rules ul {
    text-align: justify;
    text-indent: 0px;
    padding-left: 0;
}

.rules li {
    margin-bottom: 1rem;
}

.tems-of-service {
    width: 80%;
    margin-top: 12px;
    display: flex;
    justify-content: start;
    max-height: 100px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease 0.1s,
        margin 0.3s ease;
}

.tems-of-service a {
    color: #2BA3EC;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 30.19px;
    text-decoration: underline;
}

/* Rule book dropdown functionality */
/* Rule book dropdown functionality */
.rule-book-container.collapsed .divider {
    margin-top: 0;
    margin-bottom: 0;
    opacity: 0;
    transition: opacity 0.2s ease, margin 0.3s ease;
}

.rule-book-container.collapsed .rules {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    margin-bottom: 0;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s ease,
        transform 0.2s ease;
}

.rule-book-container.collapsed .tems-of-service {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s ease,
        margin 0.3s ease;
}

.rule-book-header {
    cursor: pointer;
}

.rule-book-container:not(.collapsed) .rule-book-dropdown-arrow {
    transform: rotate(180deg);
}

.rule-book-dropdown-arrow {
    transition: transform 0.3s ease;
    filter: invert(1);
}

.eliminated-users-container {
    /* position: absolute; */
    width: 80%;
    height: 5.6578rem;
    background-color: #3C4549;
    border-radius: 23.78px;
    border-top: 1px solid #FF0000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.heading-text {
    color: white;
    /* font-family: SF Pro Rounded; */
    font-weight: 400;
    font-style: Semibold;
    font-size: 22;
    line-height: 30.18px;
    letter-spacing: -2%;
    width: 9.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-heading-text {
    color: white;
    width: 20rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.footer {
    position: relative;
    width: 82.25rem;
    height: 40rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.earth_2 {
    bottom: -37rem;
    position: absolute;
    z-index: 100;
    background: url("/static/home/images/earth_2.3275728fc350.webp") center / cover no-repeat;
    background-blend-mode: multiply;
    filter: drop-shadow(0 0 3rem #00ABFFB5);
    background-size: 80rem;
    width: 100%;
    height: 160%;
}

.travel_animator {
    position: absolute;
    color: #0E86FF;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    bottom: 24%;
}

.travel_animator img {
    width: 60rem;
    height: 20rem;
}

.travel_animator img {
    object-fit: cover;
}

.sub-heading {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8rem;
    width: 28rem;
    height: 16rem;
}

#curve4 {
    d: path("M 0 150 Q 400 -100 750 150");
}

.sub-heading-text {
    font-size: 41px;
    letter-spacing: -2px;
    opacity: 0.8;
    font-weight: 400;
}

.privacy-section {
    position: absolute;
    bottom: 100px;
    width: 18rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000000;
}

.privacy-policy {
    background: black;
    color: white;
    opacity: 51%;
    backdrop-filter: blur(40.1px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 8px 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    letter-spacing: -3%;
}

.copyright-section {
    position: absolute;
    bottom: 30px;
    z-index: 1000000;
    font-family: 'Nunito', sans-serif;
}

.mobile-layout {
    display: none;
}

.desktop-layout {
    display: block;
}

iframe.instagram-media {
    border: 0px !important;
    /* transform: scale(0.8) !important; */
}

.youtube-tutorial-video {
    width: 1050px;
    max-width: 1320px;
    height: 424px;
    border-radius: 37px;
    background: linear-gradient(#0089E4, #89DBFF);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 40px 25px;
    overflow: hidden;
    position: relative;
}

.youtube-tutorial-video iframe {
    border-radius: 24px;
    border: 0px !important;
}

.left-half {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
}

.left-half-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 32px;
    line-height: 118%;
}

.youtube-tutorial-video img {
    position: absolute;
    bottom: -2.5rem;
    left: -4rem;
    width: 36rem;
    height: 20rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.mobile-layout-regular-participant {
    display: none;
}

.how-it-works {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.how-it-works h2 {
    font-family: 'Nunito', sans-serif;
    color: white !important;
    font-size: 3rem;
    font-weight: 800;
}

.contest-guide {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.content-guide-with-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 20rem;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

.content-guide-with-details a {
    text-decoration: underline;
    color: white;
}

@media (max-width: 480px) {
    .popup-container {
        width: 90%;
    }

    .inner-container img {
        width: 17rem;
    }

    svg text {
        font-family: 'Nunito', sans-serif;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -1px;
    }

    .join-telegram-container {
        width: 90%;
        animation: none;
        opacity: 1;
    }

    .join-telegram-btn {
        /* height: 100%; */
        display: flex;
        justify-content: center;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        border-radius: 18px;
        font-family: 'Nunito', sans-serif;
        font-weight: 600;
        font-size: 12px;
        text-align: center;
        color: white;
        text-decoration: none;
        border: 0.5px solid white;
        padding: 10px 18px;
        transition: transform 0.3s ease;
        white-space: nowrap;
    }

    .join-instagram-channel {
        padding: 10px 18px;
        background: linear-gradient(to right, #FEB613, #FF9B0E, #FF3E16, #FF0D95, #A60DFF);
        color: white;
        text-decoration: none;
        border-radius: 18px;
        display: flex;
        gap: 0.5rem;
        transition: transform 0.3s ease;
        font-family: 'Nunito', sans-serif;
        font-weight: 600;
        font-size: 12px;
        text-align: center;
        align-items: center;
        white-space: nowrap;
    }

    .join-instagram-channel img {
        width: 1rem;
        height: 1rem;
    }

    .youtube-tutorial-video {
        width: 100%;
        height: 42rem;
        flex-direction: column;
        justify-content: flex-start;
        gap: 1.5rem;
        border-radius: 25px;
    }

    .youtube-tutorial-video iframe {
        width: 21rem;
        height: 15rem;
        border-radius: 15px;
    }

    .left-half {
        width: 100%;
        height: 8%;
    }

    .left-half-text {
        font-size: 20px;
    }

    .youtube-tutorial-video img {
        position: absolute;
        bottom: -3.5rem;
        width: 40rem;
        height: 25rem;
        left: 54%;
        transform: translateX(-50%);
    }

    .mobile-layout {
        display: block;
        height: 13rem;
    }

    .top-3-container {
        gap: 0.5rem;
    }

    .desktop-layout {
        display: none;
    }

    .header-container {
        width: 100%;
        height: 37rem;
        margin-top: 0rem;
        opacity: 1;
        position: relative;
    }

    #curve1 {
        d: path("M 100 200 Q 400 0 700 200") !important;
    }

    #curve2 {
        d: path("M 100 250 Q 400 10 700 250") !important;
    }

    .heading-text1 {
        font-size: 35px;
    }

    .heading-text2 {
        font-size: 26px;
        letter-spacing: 0px;
    }

    .price-icon::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("/static/home/images/sun_rays.d7aa513bf48e.svg") center / cover no-repeat;
        opacity: 1;
        transform: rotate(0deg);
        transition: opacity 0.3s ease;
        z-index: 0;
        background-size: 15rem;
        border-radius: 50%;
        width: 18rem;
        height: 18rem;
        left: -67%;
        top: -68%;
        animation: spin 6s linear infinite;
    }

    .sub-header-container {
        gap: 1rem;
        height: 79%;
    }

    .make-reels-text {
        font-size: 62px;
        font-weight: 600;
        text-align: center;
    }

    .win-upto-text {
        fill: white;
        /* font-family: ; */
        font-size: 43px;
        font-weight: 500;
    }

    .cash-over-price-icon {
        position: absolute;
        left: 30%;
        top: 25%;
        width: 3.5rem;
        height: 2.5rem;
    }


    .price-icon {
        /* position: absolute; */
        display: flex;
        justify-content: space-around;
        align-items: center;
        /* top: 21%; */
        left: 50%;
        height: 30%;
        /* transform: translateX(-50%) translateY(var(--slideY, 0px)) scaleX(var(--sx, 1)); */
        will-change: transform;
        transform-style: preserve-3d;
        opacity: 1;
        animation: none;
    }

    .price-icon img[alt="price_cup"] {
        width: 10rem;
    }

    .participant-count {
        font-family: "Nunito", sans-serif;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0;
        text-align: center;
        justify-content: center;
        gap: 1rem;
        opacity: 1;
        animation: none;
        transform: none;
    }

    .circle {
        width: 1.5rem;
        height: 1.5rem;
    }

    .flip-clock-container {
        width: 136%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        opacity: 1;
        animation: none;
        margin-top: 1.5rem;
    }

    .progressive-slider-component {
        width: 80%;
        animation: none;
        opacity: 1;
    }

    .join-challenge-btn {
        top: 78%;
        padding: 0.5rem 2rem;
        width: 100%;
        opacity: 1;
        animation: none;
        transform: none;
    }

    .description {
        width: 80%;
        color: white;
        font-family: "Nunito", sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        line-height: 139%;
        letter-spacing: -3%;
        text-align: center;
        /* Remove slide-in animation for mobile */
        opacity: 1;
        animation: none;
    }

    .description::before {
        content: 'Create stunning travel animation videos in just 3 to 4 steps. No technical skill needed. With life time free access';
    }

    .leaderboard_image {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        height: 10%;
        top: -27px;
    }

    .leaderboard-ranks {
        width: 95%;
        height: 44rem;
        background: #D9EEF7;
        border-radius: 26px;
        padding: 12px;
        margin-top: 0;
    }

    .leader-rank-inner-container {
        margin-top: 3rem;
        border-radius: 1.25rem;
        padding: 0.4rem;
        gap: 0.5rem;
        min-height: 508.8px;
    }

    .top-participant {
        width: 100%;
        padding: 0.5rem;
        background-color: #FFE474;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    .badge-container img {
        width: 2.5rem;
        height: 2rem;
    }

    .profile-picture {
        display: flex;
        align-items: center;
        margin-left: 0.5rem;
    }

    .profile-pic {
        border: 1.5px solid white;
    }

    .regular-profile-picture-name .profile-pic {
        width: 25px;
        height: 25px;
    }

    .profile-pic-circle {
        width: 3rem;
        height: 3rem;
    }

    .username-videos-price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-around;
        width: 23rem;
        height: 3rem
    }

    .participant-name {
        font-family: "Nunito", sans-serif;
        font-weight: 600;
        font-style: Semi Bold;
        font-size: 13px;
        line-height: 100%;
        letter-spacing: -1%;
        display: flex;
        flex-wrap: nowrap;
        text-overflow: ellipsis;
    }

    .stat-value {
        font-family: 'Nunito', sans-serif;
        font-weight: 700;
        font-style: Bold;
        font-size: 11px;
        line-height: 100%;
        letter-spacing: -6%;
    }

    .mobile-stats {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        width: 9rem;
    }

    .videos-price {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .no-of-videos-stat {
        background-color: white;
        width: auto;
        min-width: 3.5rem;
        border-radius: 1.4rem;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 6px 6px;
        font-size: 10px;
        gap: 0rem;
    }

    .regular-participant-stats .no-of-videos-stat {
        gap: 0.3rem;
        padding: 6px 6px;
        min-width: 3.5rem;
        width: auto;
        display: flex;
        justify-content: space-evenly;
        border-radius: 1.4rem;
        align-items: center;
        font-size: 10px;
    }

    .no-of-videos-stat img {
        width: 0.7rem;
        height: 0.7rem;
    }

    .price-money-stat {
        background-color: white;
        min-width: 4rem;
        border-radius: 1.8rem;
        display: flex;
        align-items: center;
        padding: 6px 6px;
        font-size: 10px;
        gap: 0.5rem;
    }

    .price-money-stat img {
        width: 11.2px !important;
        height: 11.2px !important;
    }


    .views-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: #983301;
        font-weight: 700;
        font-style: Bold;
        font-size: 10px;
        line-height: 100%;
        letter-spacing: -6%;
    }

    .views-stat img {
        width: 1rem;
        height: 1rem;
    }

    .regular-participants {
        display: none;
    }

    .mobile-layout-regular-participant {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .participant-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem;
        padding-right: 1rem;
        background-color: #FFFFFF45;
        margin-bottom: 0;
        border-radius: 11px;
        height: 4rem;
        width: 100%;
    }

    .regular-profile-picture-name-mobile {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .username-videos-price-regular-participant {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .regular-rank-and-profile {
        width: 13rem;
        gap: 0.5rem;
    }

    .mobile-video-price-stat {
        display: flex;
        align-items: start;
        justify-content: flex-start;
        gap: 0.25rem;
    }

    .regular-views-stat {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        gap: 0.5rem;
        height: 100%;
        width: auto;
    }

    .regular-participant-stats {
        width: auto;
    }

    .regular-views-stat .no-of-views {
        margin-left: 0;
    }

    .regular-views-stat img {
        width: 1rem;
        height: 10px;
    }

    .regular-rank-cell {
        width: 2.5rem;
        height: 100%;
        font-family: 'Nunito', sans-serif;
        font-size: 12px;
    }

    .leaderboard-rank-bottom-bar {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 1rem !important;
        height: auto !important;
        margin-top: 1rem !important;
    }

    .pagination-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 0;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
        max-width: 100%;
        scrollbar-width: none;
        /* scrollbar-color: #ddd transparent; */
    }

    .nav-btn {
        width: 2.5rem !important;
        height: 2rem !important;
    }

    .nav-btn img {
        width: 12px;
        height: 14px;
    }

    .page-btn {
        font-size: 12px;
        min-width: auto;
    }

    .page-btn.active {
        width: 2rem;
        height: 2rem;
    }

    .total-count-of-participants {
        width: 12rem;
    }

    .total-count-of-participants .profile-stack .circle {
        width: 1.5rem;
        height: 1.5rem;
    }

    .total-count-of-participants .profile-stack .circle img {
        margin-top: -7px !important;
    }

    .leaderboard-ranks.empty {
        min-height: 12rem;
    }

    .empty-leaderboard-message {
        font-size: 18px;
        padding: 3rem 1rem;
        min-height: 8rem;
    }

    .top-3-videos-heading {
        margin-top: 6px;
    }

    .top-3-videos-container {
        width: 100%;
        height: 32rem;
        padding: 0;
        font-family: "Nunito", sans-serif;
        font-weight: 700;
        font-style: Bold;
        font-size: 33px;
        line-height: 90%;
        letter-spacing: -4%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-top: -2rem;
    }

    .video-tabs {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: 100%;
        height: 33rem;
        padding: 5px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        gap: 1rem;
    }

    .video-header {
        width: 70%;
        /* Adjust this percentage to control peek amount (80-85% works well) */
        flex: 0 0 80%;
        /* Match the width value */
        transform: scale(0.7);
        transform-origin: center center;
    }

    .insta-embed {
        width: 65% !important;
        box-shadow: none !important;
        height: 37.5rem !important;
    }

    .Content {
        padding-bottom: 177.78% !important;
    }

    .videos {
        width: 65%;
        flex: 0 0 auto;
        box-shadow: none;
    }

    .sub-content-wrapper {
        width: 100%;
        min-height: 12rem;
        height: auto;
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .rule-book-container {
        width: 100%;
        min-height: 6rem;
        height: auto;
        display: flex;
        flex-direction: column;
        background-color: white;
        border-radius: 25px;
        border: 1px solid;
        border-image: linear-gradient(#FFFFFF, #0B161C);
        padding: 30px;
    }

    .rule-book-heading {
        width: 45%;
        font-family: "Nunito", sans-serif;
        font-weight: 600;
        font-style: Semibold;
        font-size: 16px;
        line-height: 33px;
        letter-spacing: -4%;
        justify-content: flex-start;
        gap: 1rem;
    }

    .rule-book-heading img {
        width: 37px !important;
        height: 37px !important;
    }

    .divider {
        width: 100%;
        height: 0.1px;
        background-color: #000000;
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .rules {
        width: 100%;
        font-weight: 400;
        font-style: Medium;
        font-size: 16px;
        line-height: 19px;
        color: #000000;
        opacity: 50%;
    }

    .rules ul {
        text-align: justify;
        padding-left: 1rem;
    }

    .rules li {
        margin-bottom: 1rem;
    }

    .tems-of-service a {
        font-size: 17px;
    }

    .tems-of-service {
        margin-top: 1rem;
        margin-bottom: 0;
        width: 100%;
    }

    .eliminated-users-container.collapsed {
        width: 100%;
        background-color: #FFFFFF33;
        border-radius: 25px !important;
        border-top: 1px solid #FF0000;
        padding: 2rem;
        transition: all 0.3s ease;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .eliminated-users-container.collapsed .eliminated-header .heading-text {
        color: white;
        font-family: 'Nunito', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 30.18px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 62%;
    }

    .eliminated-header .header-last-content {
        width: 56%;
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 2rem;
    }

    .eliminated-users-container.collapsed .eliminated-summary .text {
        display: none !important;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-header {
        padding: 0 1.5rem;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-header .heading-text {
        color: white;
        font-family: 'Nunito', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 30.18px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-content {
        margin-top: 2rem;
    }

    .eliminated-users-container:not(.collapsed) {
        width: 100%;
        padding: 0.8rem;
        border-radius: 25px !important;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-content {
        display: block;
        padding: 0.8rem;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-footer .eliminated-summary {
        display: none;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-footer .eliminated-pagination-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: auto;
        max-width: 100%;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-participant-row .eliminated-participant-name {
        font-weight: 600;
        font-size: 12px;
        width: 63%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-participant-row .elimination-date {
        font-size: 12px;
        color: white;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-participant-row .elimination-reason {
        font-size: 12px;
        color: white;
    }

    .heading-text {
        width: 12.5rem;
    }

    .footer {
        position: relative;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 335px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0;
    }

    .earth_2 {
        position: absolute;
        bottom: -17rem;
        z-index: 100;
        width: 130%;
        height: 50%;
        background: url("/static/home/images/earth_2.3275728fc350.webp") center / cover no-repeat;
        background-size: 42rem;
        width: 100%;
        height: 126%;
    }

    .travel_animator {
        position: absolute;
        color: #0E86FF;
        height: 50px;
        width: 100%;
        bottom: 155px;
    }

    .travel_animator img {
        object-fit: cover;
        width: 23rem;
        height: 9rem;
    }

    .sub-heading {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 5.625rem;
        width: 14rem;
        height: 10rem;
    }

    #curve4 {
        d: path("M 50 150 Q 400 -100 750 150") !important;
    }

    .sub-heading-text {
        font-size: 41px;
    }

    .privacy-section {
        width: 15rem;
        justify-content: space-evenly;
        height: 24px;
        bottom: 65px;
    }

    .privacy-policy {
        font-size: 11px;
        padding: 4px 16px;
        display: flex;
        align-items: center;
    }

    .copyright-section {
        font-size: 12px;
    }

    .footer-for-video-leaderboard {
        height: 9rem;
        padding: 8px;
    }

    .profile-picture-small {
        width: 30px;
        height: 30px;
    }

    .profile-logo-overlay {
        width: 14px;
        height: 14px;
        bottom: 5px !important;
        right: -1px;
        padding: 1px;
    }

    .profile-username {
        font-size: 11px;
    }

    .footer-for-video-leaderboard .likes-container,
    .footer-for-video-leaderboard .views-div {
        font-size: 12px;
        gap: 0.3rem;
    }

    .footer-for-video-leaderboard .likes-icon,
    .footer-for-video-leaderboard .views {
        width: 1rem;
        height: 1rem;
    }

    .footer-for-video-leaderboard .caption {
        font-size: 11px;
    }

    .eliminated-creator-info {
        width: 7rem;
    }

    .how-it-works {
        gap: 2rem;
    }

    .how-it-works h2 {
        font-size: 24px;
    }

    .contest-guide {
        flex-direction: column;
        align-items: start;
        justify-content: flex-start;
        gap: 1rem;
    }

    .content-guide-with-details {
        width: 100%;
        flex-direction: row;
        gap: 1rem;
        font-size: 16px;
    }

    .content-guide-with-details img {
        width: 120px;
        height: 120px;
    }

    .white_right_arrow {
        rotate: 90deg;
        width: 9px;
        height: 15px;
        margin-left: 3rem;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .popup-container {
        width: 90%;
    }

    svg {
        top: -3rem;
    }

    svg text {
        font-family: 'Nunito', sans-serif;
        font-size: 30px;
        font-weight: 700;
        letter-spacing: -2px;
    }

    .join-telegram-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        border-radius: 18px;
        font-family: 'Nunito', sans-serif;
        font-weight: 600;
        font-size: 14px;
        text-align: center;
        color: white;
        text-decoration: none;
        border: 0.5px solid white;
        padding: 10px 18px;
        white-space: nowrap;
        transition: transform 0.3s ease;
    }

    .join-instagram-channel {
        padding: 10px 18px;
        background: linear-gradient(to right, #FEB613, #FF9B0E, #FF3E16, #FF0D95, #A60DFF);
        color: white;
        text-decoration: none;
        border-radius: 18px;
        display: flex;
        gap: 0.5rem;
        transition: transform 0.3s ease;
        font-family: 'Nunito', sans-serif;
        font-weight: 600;
        font-size: 14px;
        white-space: nowrap;
        text-align: center;
    }

    .join-instagram-channel img {
        width: 1.5rem;
        height: 1.5rem;
    }

    .youtube-tutorial-video {
        width: 95%;
        height: 42rem;
        flex-direction: column;
        justify-content: flex-start;
        gap: 1.5rem;
        border-radius: 25px;
    }

    .youtube-tutorial-video iframe {
        width: 28rem;
        height: 18rem;
        border-radius: 15px;
    }

    .left-half {
        width: 100%;
        height: 8%;
    }

    .left-half-text {
        font-size: 20px;
    }

    .youtube-tutorial-video img {
        position: absolute;
        bottom: -3.5rem;
        width: 40rem;
        height: 25rem;
        /* left: -6.5rem; */
    }

    .header-container {
        width: 70%;
        height: 41rem;
        opacity: 0;
        top: 0;
        position: relative;
    }

    #curve1 {
        d: path("M 100 200 Q 400 20 700 200");
    }

    #curve2 {
        d: path("M 100 250 Q 400 50 700 250")
    }

    .curved-text {
        top: 3rem;
    }

    .heading-text1 {
        font-size: 37px;
    }

    .heading-text2 {
        font-size: 50px;
        letter-spacing: -4px;
    }

    .sub-header-container {
        height: 436px;
    }

    .make-reels-text {
        font-size: 80px;
        font-weight: 700;
        text-align: center;
    }

    .win-upto-text {
        fill: white;
        font-size: 51px;
        font-weight: 600;
    }

    .cash-over-price-icon {
        position: absolute;
        left: 31%;
        top: 20%;
        width: 2.5rem;
        height: 2.5rem;
    }

    .price-icon {
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 43%;
        will-change: transform;
        transform-style: preserve-3d;
    }

    .price-icon img {
        width: 10rem;
        height: 10rem;
    }

    .price_cup_money_1 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.5s ease;
        width: 7rem !important;
        height: 7rem !important;
        top: 0;
    }

    .price-icon:hover .price_cup_money_1 {
        transform: rotate(-1deg);
        left: 23%;
        transition: all 0.5s ease;
        /* top: -5%; */
    }


    .price_cup_money_2 {
        position: absolute;
        top: 0;
        left: 15px;
        transition: all 0.5s ease;
        width: 7rem !important;
        height: 7rem !important;
    }

    .price-icon:hover .price_cup_money_2 {
        transform: rotate(-30deg);
        left: 7%;
        transition: all 0.5s ease;
        top: 0% !important;
    }

    .price_cup_money_3 {
        position: absolute;
        right: 12%;
        top: 0%;
        z-index: -1;
        transition: all 0.5s ease;
        width: 7rem !important;
        height: 7rem !important;
    }

    .price-icon:hover .price_cup_money_3 {
        transform: rotate(10deg);
        right: 5%;
        top: 0%;
        transition: all 0.5s ease;
    }

    .price-icon::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("/static/home/images/sun_rays.d7aa513bf48e.svg") center / cover no-repeat;
        opacity: 1;
        transform: rotate(0deg);
        transition: opacity 0.3s ease;
        z-index: 0;
        background-size: 17rem;
        border-radius: 50%;
        width: 18rem;
        height: 18rem;
        left: -75%;
        top: 0;
        animation: spin 6s linear infinite;
    }

    .flip-clock-container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin-top: -4rem;
    }

    .progressive-slider-component {
        width: 100%;
        height: 55px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .join-challenge-btn {
        top: 80%;
    }

    .participant-count {
        top: 88%;
    }

    .description {
        width: 100%;
        color: white;
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        line-height: 130%;
        letter-spacing: -3%;
        text-align: center;
    }

    .description::before {
        content: 'Create stunning travel animation videos in just 3 to 4 steps. No technical skill needed. With life time free access';
    }

    .mobile-layout {
        display: block;
        height: 17.5rem;
    }

    .desktop-layout {
        display: none;
    }

    .mobile-stats {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
    }

    .leaderboard_image {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 97px;
        top: -33px;
    }

    .leaderboard-ranks {
        width: 95%;
        height: 56rem;
        background: #D9EEF7;
        border-radius: 30px;
        padding: 15px;
        margin-top: 0;
    }

    .leader-rank-inner-container {
        margin-top: 4rem;
        border-radius: 1.5rem;
        padding: 0.8rem;
        gap: 1rem;
    }

    .top-3-container {
        margin-bottom: 0;
    }

    .top-participant {
        width: 100%;
        padding: 0.8rem 0;
        background-color: #FFE474;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    .badge-container img {
        width: 3.5rem;
        height: 3rem;
    }

    .profile-picture {
        display: flex;
        align-items: center;
    }

    .profile-pic-circle {
        width: 3.5rem;
        height: 3.5rem;
    }

    .username-videos-price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-around;
        width: 20rem;
        height: 3.5rem;
        margin-left: 0.5rem;
    }

    .stat-value {
        font-size: 13px;
    }

    .participant-name {
        margin-left: 0;
        font-weight: 600;
        font-style: Semi Bold;
        font-size: 15px;
        line-height: 100%;
        letter-spacing: -1%;
        display: flex;
        flex-wrap: nowrap;
        text-overflow: ellipsis;
        width: 100%;
    }

    .videos-price {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .no-of-videos-stat {
        background-color: white;
        min-width: 3rem;
        height: 1.5rem;
        border-radius: 1.6rem;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 2px 10px;
        font-size: 12px;
        gap: 0.5rem;
    }

    .no-of-videos-stat img {
        width: 0.7rem;
        height: 0.7rem;
    }

    .price-money-stat {
        background-color: white;
        min-width: 4rem;
        height: 1.5rem;
        border-radius: 1.8rem;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        font-size: 12px;
        padding: 2px 10px;
        gap: 0.5rem;
    }

    .price-money-stat img {
        width: 1.1rem;
        height: 1.1rem;
    }

    .views-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #983301;
        font-weight: 700;
        font-style: Bold;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: -6%;
    }

    .views-stat img {
        width: 1.5rem;
        height: 1.5rem;
    }

    .regular-participants {
        display: none;
    }

    .mobile-layout-regular-participant {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
    }

    .participant-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem;
        padding-right: 1.5rem;
        background-color: #FFFFFF45;
        margin-bottom: 0;
        border-radius: 11px;
        height: 5rem;
        width: 100%;
    }

    .regular-profile-picture-name-mobile {
        height: 100%;
        width: 13rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .username-videos-price-regular-participant {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: flex-start;
        gap: 0.5rem;
        width: 100%;
    }

    .regular-rank-and-profile {
        max-width: 16rem;
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .mobile-video-price-stat {
        display: flex;
        align-items: start;
        justify-content: flex-start;
        gap: 0.25rem;
    }

    .regular-views-stat {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        gap: 0.5rem;
        height: 100%;
        width: auto;
    }

    .regular-participant-stats {
        width: auto;
    }

    .regular-views-stat .no-of-views {
        margin-left: 0;
        font-size: 16px;
    }

    .regular-views-stat img {
        width: 1.5rem;
        height: 1.5px;
    }

    .regular-rank-cell {
        width: 2.5rem;
        height: 100%;
        font-family: 'Nunito', sans-serif;
        font-size: 16px;
    }

    .leaderboard-rank-bottom-bar {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 1rem !important;
        height: auto !important;
        margin-top: 1rem !important;
    }

    .pagination-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 0;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
        max-width: 100%;
        scrollbar-width: none;
        /* scrollbar-color: #ddd transparent; */
    }

    .nav-btn {
        width: 2.5rem !important;
        height: 2rem !important;
    }

    .nav-btn img {
        width: 12px;
        height: 14px;
    }

    .page-btn {
        font-size: 12px;
        min-width: auto;
        width: 2rem;
        height: 2rem;
    }

    .leaderboard-ranks.empty {
        min-height: 14rem;
    }

    .leaderboard-rank-bottom-bar:has(:only-child) {
        height: 6rem;
    }

    .empty-leaderboard-message {
        font-size: 20px;
        padding: 3.5rem 1.5rem;
        min-height: 9rem;
    }

    .top-3-videos-container {
        width: 100%;
        height: 42rem;
        font-weight: 700;
        font-style: Bold;
        font-size: 36px;
        line-height: 90%;
        letter-spacing: -4%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .video-tabs {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: 98%;
        height: 90%;
        padding: 8px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        gap: 1rem;
    }

    .videos {
        width: 45%;
        flex: 0 0 auto;
        box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.2);
    }

    .sub-content-wrapper {
        width: 100%;
        min-height: 12rem;
        height: auto;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .rule-book-container {
        width: 95%;
        min-height: 6rem;
        display: flex;
        flex-direction: column;
        background-color: white;
        border-radius: 30px;
        border: 1px solid;
        border-image: linear-gradient(#FFFFFF, #0B161C);
        padding: 30px;
    }

    .rule-book-heading {
        width: 55%;
    }

    .divider {
        width: 100%;
        height: 0.1px;
        background-color: #000000;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .rules {
        width: 100%;
        font-weight: 400;
        font-style: Medium;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: -4%;
        color: #000000;
        opacity: 50%;
    }

    .rules ul {
        text-align: justify;
        text-indent: -0px;
        padding-left: 1rem;
    }

    .tems-of-service {
        margin-top: 16px;
        width: 100%;
    }

    .eliminated-users-container.collapsed {
        width: 95%;
        height: 74.54px;
        background-color: #3C4549;
        border-radius: 45px;
        border-top: 1px solid #FF0000;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 0.8rem;
    }

    .eliminated-users-container:not(.collapsed) {
        width: 95%;
        height: 74.54px;
        background-color: #3C4549;
        border-radius: 22px;
        border-top: 1px solid #FF0000;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 0.8rem;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-header {
        padding: 0 0.5rem;
    }

    .eliminated-users-container.collapsed .eliminated-header .heading-text {
        color: white;
        font-weight: 600;
        font-size: 16px;
        line-height: 30.18px;
        letter-spacing: -2%;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 40%;
    }

    .eliminated-users-container.collapsed .eliminated-header .header-last-content {
        width: 45%;
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 0rem;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-header .heading-text {
        color: white;
        font-weight: 600;
        font-size: 18px;
        line-height: 30.18px;
        letter-spacing: -2%;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 40%;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-content {
        margin-top: 0rem !important;
        width: 100%;
        background-color: #00000059;
        border-radius: 1.25rem;
        padding: 0.8rem;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-footer {
        flex-direction: column-reverse;
        height: 8rem;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-pagination-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: auto;
        max-width: 100%;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-participant-row .eliminated-participant-name {
        font-weight: 600;
        font-size: 12px;
        width: 40%;
        text-overflow: ellipsis;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-participant-row .elimination-date {
        font-size: 12px;
        color: white;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-participant-row .elimination-reason {
        font-size: 12px;
        color: white;
    }

    .join-telegram-container {
        height: 3rem;
    }

    /* .text::before {
        content: '';
    } */

    .heading-text {
        width: 15rem;
    }

    .footer {
        top: 0;
        bottom: 0;
        height: 480px;
        width: 100%;
        margin-top: 0;
    }

    .earth_2 {
        width: 100%;
        height: 100%;
        background: url("/static/home/images/earth_2.3275728fc350.webp") center / cover no-repeat;
        background-blend-mode: multiply;
        background-size: 52rem;
        bottom: -20rem;
    }

    .travel_animator {
        bottom: 10.625rem;
        height: 45px;
        width: 114%;
        transform: rotate(0deg);
    }

    .travel_animator img {
        width: 30rem;
        height: 13rem;
    }

    .sub-heading {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0.3125rem;
        width: 20rem;
    }

    #curve4 {
        d: path("M 50 150 Q 400 -100 750 150");
    }

    .privacy-section {
        bottom: 3rem;
        height: 32px;
        width: 16rem;
    }

    .privacy-policy {
        font-size: 11px;
        padding: 6px 20px;
        display: flex;
        align-items: center;
    }

    .copyright-section {
        bottom: 0.5625rem;
        font-size: 13px;
    }

    .header-for-video-leaderboard {
        width: 100%;
        height: 55px;
        padding: 0 0.5rem;
    }

    .footer-for-video-leaderboard {
        width: 100%;
        height: 8rem;
        padding: 10px;
    }

    .profile-picture-small {
        width: 28px;
        height: 28px;
    }

    .profile-logo-overlay {
        width: 16px;
        height: 16px;
        bottom: 5px;
        right: -1px;
        padding: 1.5px;
    }

    .profile-username {
        font-size: 12px;
    }

    .footer-for-video-leaderboard .video-stats {
        height: 1.5rem;
    }

    .footer-for-video-leaderboard .likes-container,
    .footer-for-video-leaderboard .views-div {
        font-size: 14px;
    }

    .footer-for-video-leaderboard .likes-icon,
    .footer-for-video-leaderboard .views {
        width: 1.2rem;
        height: 1.2rem;
    }

    .footer-for-video-leaderboard .caption {
        font-size: 12px;
        margin-top: 1rem;
    }

    .how-it-works {
        gap: 3rem;
    }

    .how-it-works h2 {
        font-size: 2.25rem;
    }

    .contest-guide {
        flex-direction: column;
        align-items: start;
        justify-content: flex-start;
        gap: 2rem;
    }

    .content-guide-with-details {
        width: 100%;
        flex-direction: row;
        gap: 1.5rem;
        font-size: 18px;
    }

    .content-guide-with-details img {
        width: 150px;
        height: 150px;
    }

    .white_right_arrow {
        rotate: 90deg;
        width: 9px;
        height: 15px;
        margin-left: 3rem;
    }
}

@media (max-width: 1080px) and (min-width: 769px) {
    .youtube-tutorial-video {
        width: 90%;
        height: 55rem;
        flex-direction: column;
        justify-content: flex-start;
        gap: 1.5rem;
        border-radius: 25px;
    }

    .youtube-tutorial-video iframe {
        width: 46rem;
        height: 22rem;
        border-radius: 15px;
    }

    .left-half {
        width: 100%;
        height: 8%;
    }

    .left-half-text {
        font-size: 32px;
    }

    .youtube-tutorial-video img {
        position: absolute;
        bottom: -3.5rem;
        width: 57rem;
        height: 35rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .header-container {
        width: 70%;
        height: 53rem;
        opacity: 0;
        animation: headerBounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        animation-delay: 0.3s;
        position: relative;
    }

    .sub-header-container {
        width: 100%;
        height: 556px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        gap: 1.5rem;
    }

    .make-reels-text {
        font-size: 85px;
        font-weight: 700;
        text-align: center;
    }

    .win-upto-text {
        fill: white;
        font-size: 55px;
        font-weight: 600;
    }

    .cash-over-price-icon {
        position: absolute;
        left: 40%;
        top: 25%;
    }

    .price-icon {
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 30%;
        width: 15rem;
        height: 30rem;
    }

    .price-icon img[alt="price_cup"] {
        width: 23rem !important;
        height: 17rem !important;
    }

    .price-icon::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("/static/home/images/sun_rays.d7aa513bf48e.svg") center / cover no-repeat;
        opacity: 0;
        transform: rotate(0deg);
        transition: opacity 0.3s ease;
        z-index: 0;
        background-size: 24rem;
        border-radius: 50%;
        width: 20rem;
        height: 20rem;
        left: -18%;
        top: 13%;
    }

    .price_cup_money_1 {
        position: absolute;
        left: 50%;
        top: -55%;
        transform: translateX(-50%);
        transition: all 0.5s ease;
        width: 13rem !important;
        height: 13rem !important;
    }

    .price-icon:hover .price_cup_money_1 {
        transform: rotate(4deg);
        left: 3%;
        transition: all 0.5s ease;
        /* top: -5%; */
    }

    .price_cup_money_2 {
        position: absolute;
        left: -38%;
        top: -47%;
        transition: all 0.5s ease;
        width: 14rem !important;
        height: 14rem !important;
    }

    .price-icon:hover .price_cup_money_2 {
        transform: rotate(-22deg);
        left: -33%;
        transition: all 0.5s ease;
        /* top: -5%; */
    }

    .price_cup_money_3 {
        position: absolute;
        right: -22%;
        z-index: -1;
        transition: all 0.5s ease;
        top: -42%;
        width: 13rem !important;
        height: 13rem !important;
    }

    .price-icon:hover .price_cup_money_3 {
        transform: rotate(10deg);
        right: -35%;
        transition: all 0.5s ease;
    }

    .flip-clock-container {
        width: 110%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .progressive-slider-component {
        opacity: 1;
        animation: none;
        width: 80%;
        height: 55px;
    }

    .join-challenge-btn {
        top: 68%;
        width: 12rem;
        height: 3rem;
        font-size: 1.1rem;
    }

    .participant-count {
        top: 76%;
        font-size: 1.25rem;
    }

    .description {
        width: 100%;
        color: white;
        font-weight: 500;
        font-style: Medium;
        font-size: 20px;
        line-height: 125%;
        letter-spacing: -3%;
        text-align: center;
    }

    .description::before {
        content: 'Join our exclusive creator challenge and showcase your talent to millions. Reach milestones, climb the leaderboard, and win amazing prizes!';
    }

    .leaderboard_image {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 55%;
        top: -50px;
    }

    .leaderboard-ranks {
        width: 92%;
        height: 47rem;
        background: #D9EEF7;
        border-radius: 35px;
        padding: 18px;
        margin-top: 0;
    }

    .leader-rank-inner-container {
        margin-top: 5rem;
        border-radius: 1.8rem;
        padding: 1rem;
        height: 80%;
    }

    .rank-and-profile {
        width: 20rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .participant-row {
        padding: 0;
    }

    .regular-rank-and-profile {
        width: 19rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .leaderboard-rank-bottom-bar {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 5rem;
        margin-top: 0rem;
    }

    .pagination-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 0;
        overflow-x: auto;
        white-space: nowrap;
        width: 38%;
        max-width: 100%;
        scrollbar-width: none;
    }

    .total-count-of-participants {
        font-size: 16px;
    }

    .page-btn,
    .nav-btn {
        font-size: 16px;
        padding: 0.6rem 1.2rem;
    }

    .empty-leaderboard-message {
        font-size: 26px;
        padding: 4rem 2rem;
    }

    .top-3-videos-container {
        width: 95%;
        height: 45rem;
        padding: 20px;
        font-weight: 400;
        font-style: Bold;
        font-size: 40px;
        line-height: 90%;
        letter-spacing: -4%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .video-tabs {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: 95%;
        height: 88%;
        padding: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        gap: 1.5rem;
    }

    .videos {
        width: 30%;
        flex: 0 0 auto;
        box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.25);
    }

    .sub-content-wrapper {
        width: 100%;
        min-height: 20rem;
        height: max-content;
        /* background-color: rebeccapurple; */
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        gap: 3rem;
    }

    .rule-book-container {
        width: 90%;
        min-height: 6rem;
        height: auto;
        display: flex;
        flex-direction: column;
        background-color: white;
        border-radius: 35px;
        border: 1px solid;
        border-image: linear-gradient(#FFFFFF, #0B161C);
        padding: 35px;
    }

    .rule-book-heading {
        width: 32%;
        font-size: 28px;
    }

    .rule-book-heading img {
        width: 38px;
        height: 38px;
    }

    .divider {
        width: 100%;
        height: 0.1px;
        background-color: #000000;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .rules {
        width: 100%;
        font-weight: 400;
        font-style: Medium;
        font-size: 26px;
        line-height: 33px;
        letter-spacing: -4%;
        color: #000000;
        opacity: 50%;
    }


    .rules ul {
        text-align: justify;
        padding-left: 1rem;
    }

    .tems-of-service {
        margin-bottom: 0;
        margin-top: 1rem;
        font-size: 26px;
        width: 100%;
    }

    .tems-of-service a {
        font-size: 28px;
    }

    .eliminated-users-container.collapsed {
        width: 90%;
        height: 100px;
        background-color: #3C4549;
        border-radius: 25px;
        border-top: 1px solid #FF0000;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }

    .eliminated-users-container.collapsed .eliminated-header .heading-text {
        color: white;
        font-weight: 600;
        font-size: 22px;
        line-height: 30.18px;
        letter-spacing: -2%;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 30%;
    }

    .eliminated-users-container.collapsed .eliminated-summary .text {
        color: white;
        font-size: 22px;
    }

    .eliminated-users-container:not(.collapsed) {
        width: 90%;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-header .heading-text {
        color: white;
        font-weight: 600;
        font-size: 24px;
        line-height: 30.18px;
        letter-spacing: -2%;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 35%;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-footer {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        width: 100%;
        height: 8rem;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-pagination-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: auto;
        max-width: 100%;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-summary .text {
        color: white;
        font-size: 22px;
    }

    .eliminated-users-container:not(.collapsed) .eliminated-participant-name {
        font-weight: 600;
        font-size: 18px;
    }

    .eliminated-users-container:not(.collapsed) .elimination-date {
        font-weight: 600;
        font-size: 18px;
    }

    .eliminated-users-container:not(.collapsed) .elimination-reason {
        font-weight: 600;
        font-size: 18px;
    }

    .footer {
        top: 0;
        width: 100%;
        height: 40rem;
        margin-top: 0;
    }

    .earth_2 {
        width: 100%;
        height: 131%;
        background: url("/static/home/images/earth_2.3275728fc350.webp") center / cover no-repeat;
        background-blend-mode: multiply;
        background-size: 92rem;
        bottom: -34rem;
    }

    .travel_animator {
        bottom: 13rem;
        width: 110%;
    }

    .travel_animator img {
        object-fit: cover;
        width: 100%;
    }

    .sub-heading {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 9.625rem;
        width: 35rem;
    }

    #curve4 {
        d: path("M 50 150 Q 400 -100 750 150");
    }
}

/* Replace the existing eliminated users CSS with these styles */

.eliminated-users-container {
    width: 1050px;
    max-width: 1320px;
    background-color: #FFFFFF33;
    border-radius: 23.42px;
    border-top: 1px solid #FF0000;
    padding: 1.5rem;
    transition: all 0.6s cubic-bezier(0.2, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.eliminated-users-container.collapsed {
    height: 5.6578rem;
    border-radius: 38px;
}

.eliminated-users-container:not(.collapsed) {
    height: auto;
    min-height: 18rem;
    background: linear-gradient(145deg, #4a5056, #3a4046);
    border-radius: 38px;
}

.eliminated-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.eliminated-header .heading-text {
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 30.18px;
    letter-spacing: -2%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 20%;
}

.eliminated-header .header-last-content {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 2rem;
}

.eliminated-users-container:not(.collapsed) .eliminated-header .eliminated-summary {
    display: none;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    filter: invert(1);
}

.eliminated-users-container:not(.collapsed) .dropdown-arrow {
    transform: rotate(180deg);
}

.eliminated-content {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    width: 100%;
    background-color: #00000059;
    border-radius: 1.25rem;
    padding: 0 2rem;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.2, 0, 0.2, 1),
        opacity 0.3s ease 0.1s,
        margin-top 0.5s ease,
        padding 0.3s ease;
}

.eliminated-users-container:not(.collapsed) .eliminated-content {
    max-height: 2000px;
    opacity: 1;
    margin-top: 2rem;
    padding: 1rem;
}

.eliminated-table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 1rem;
}

.eliminated-participant-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr;
    gap: 1rem;
    align-items: center;
    padding: 0rem 0.5rem;
    background-color: #00000045;
    margin-bottom: 0.5rem;
    border-radius: 15px;
    color: white;
    height: 51px;
}

.eliminated-participant-row:last-child {
    margin-bottom: 0;
}

.eliminated-creator-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.7rem;
}

.eliminated-creator-info .profile-pic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.eliminated-creator-info .profile-pic-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffb300;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid white;
}

.eliminated-participant-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.elimination-date {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: white;
}

.elimination-reason {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: white;
}

.eliminated-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.eliminated-summary .text {
    color: white;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
}

.no-eliminated-message {
    text-align: center;
    color: white;
    padding: 3rem;
    font-size: 18px;
    opacity: 0.8;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.eliminated-pagination-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    max-width: 31%;
}

.eliminated-pagination-container .nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background-color: white;
    color: #333;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.eliminated-pagination-container .nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.eliminated-pagination-container .nav-btn:hover:not(:disabled) {
    background-color: #f0f0f0;
}

.eliminated-pagination-container .page-btn {
    width: 50px;
    height: 50px;
    border: none;
    background-color: transparent;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.eliminated-pagination-container .page-btn.active {
    background-color: white;
    color: #333;
}

.eliminated-pagination-container .page-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.2);
}

.eliminated-pagination-container .pagination-numbers {
    display: flex;
    gap: 0.3rem;
}

.eliminated-users-container.collapsed .eliminated-header .heading-text img {
    width: 1rem;
    height: 1rem;
}

/* Video wrapper styles for leaderboard top 3 videos */
.video-wrapper-leaderboard {
    position: relative;
    z-index: 1;
    height: 37.5rem;
    background-color: transparent;
    border-radius: 30.19px !important;
    box-shadow: 0 4px 16px #545454;
}

/* Header container for leaderboard videos - WHITE background */
.header-for-video-leaderboard {
    width: 20.38rem;
    height: 55px;
    border-top-left-radius: 30.19px;
    border-top-right-radius: 30.19px;
    background-color: white;
    position: absolute;
    top: 0%;
    z-index: 999999;
    border-bottom-color: transparent;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 1rem;
    text-align: start;
}

/* Footer container for leaderboard videos - WHITE background */
.footer-for-video-leaderboard {
    position: absolute;
    bottom: -3px;
    height: 9rem;
    width: 20.38rem;
    border-bottom-left-radius: 30.19px;
    border-bottom-right-radius: 30.19px;
    background-color: white;
    z-index: 999999;
    border-top-color: transparent;
    pointer-events: none;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Profile info in header */
.video-profile-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: black;
    height: 3rem;
}

.profile-picture-container {
    position: relative;
    display: inline-block;
    height: 100%;
}

.profile-picture-small {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
    margin-top: 10px;
}

.profile-logo-overlay {
    position: absolute;
    bottom: 8px;
    right: -8px;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: white;
    padding: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.profile-username {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: black;
}

.profile-username a {
    text-decoration: none;
    color: black;
}

.profile-username a:hover {
    text-decoration: underline;
}

/* Video stats in footer for leaderboard - BLACK text on white background */
.footer-for-video-leaderboard .video-stats {
    width: 100%;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: black;
}

.footer-for-video-leaderboard .likes-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    width: 5rem;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: black;
}

.footer-for-video-leaderboard .views-div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    width: 10rem;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: black;
}

.footer-for-video-leaderboard .likes-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-for-video-leaderboard .views {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-for-video-leaderboard .caption {
    margin-top: 1.5rem;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: black;
    text-align: start;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}

@media (min-width: 1921px) {
    .price-icon::before {
        left: 5%;
    }
}