html {
    height: 100%;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiase;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: "Montserrat";
    font-size: 22px;
    line-height: 1em;
    font-style: normal;
    font-weight: normal;
    color: #000;
    height: 100%;
    background: #FFF;
    margin: 0;
    max-width: 100%;
}

a, img, input, textarea, select {
    outline: none;
}

label {
    cursor: pointer;
}

img {
    border: 0;
    vertical-align: bottom;
}

form {
    margin: 0;
}

header, nav, section, article, aside, footer {
    display: block;
}

a {
    color: #FF008C;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

textarea, input, select, button {
    resize: none;
    outline: none;
}

p {
    padding: 0;
    margin: 0 0 20px 0;
}

table {
    border-collapse: collapse;
}

h1, h2, h3, h4, h5 {
    margin-top: 0;
    font-weight: normal;
}

[class*=icon-] {
    display: inline-block;
    vertical-align: middle;
}

.wrapper {
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
}

@media screen and (max-width: 767px) {
    .wrapper {
        min-width: 375px;
        overflow: hidden;
    }
}

.section-wrapper {
    margin: 0 auto;
    max-width: 1165px;
    padding-right: 40px;
    padding-left: 40px;
    box-sizing: content-box;
}

@media screen and (max-width: 767px) {
    .section-wrapper {
        padding-right: 16px;
        padding-left: 16px;
    }
}

.burger {
    display: flex;
    align-items: center;
    width: 39px;
    height: 22px;
    padding: 0;
    box-sizing: unset;
    cursor: pointer;
    position: relative;
    right: 0;
    bottom: auto;
    z-index: 6;
    flex-direction: column;
    justify-content: center;
}

@media screen and (min-width: 1191px) {
    .burger {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .burger {
        display: none;
    }
}

.burger:after, .burger:before,
.burger i {
    content: "";
    display: block;
    background: #FFF;
    width: 100%;
    height: 3px;
    transition: all 0.1s ease-in-out;
}

.burger i {
    position: relative;
    margin: 6px 0;
}

.burger.x-burger-active {
    z-index: 155;
}

.burger.x-burger-active:after {
    transform: rotate(45deg);
    margin-top: -3px;
}

.burger.x-burger-active:before {
    transform: rotate(-45deg);
}

.burger.x-burger-active i {
    display: none;
}

.header {
    padding: 12px 0;
    background: #FF008C;
    background-size: cover;
    color: #FFF;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.header-menu {
    flex: 1;
    display: flex;
}

.header-menu .menu {
    justify-content: center;
    flex: 1;
}

.header .burger {
    margin-left: auto;
}

.header .section-wrapper {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .header {
        padding: 8px 0;
    }
}

@media screen and (max-width: 767px) {
    .header {
        padding: 8px 0;
    }

    .header-menu {
        display: none;
    }

    .x-mobile-menu-opened .header-menu {
        display: block;
        background: #FF008C;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% - 1px);
        z-index: 10;
        max-height: calc(100vh - 53px);
        padding: 40px 16px 70px;
        display: flex;
        flex-flow: column;
        align-items: center;
    }

    .x-mobile-menu-opened .header-menu .menu {
        flex-flow: column;
        align-items: center;
        margin-bottom: 34px;
    }

    .x-mobile-menu-opened .header-menu .menu-item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.footer {
    background: #151515;
    padding: 49px 0 44px;
    position: relative;
    z-index: 1;
    color: rgba(244, 245, 247, 0.6);
    line-height: 130%;
}

.footer .section-wrapper {
    display: flex;
    flex-flow: wrap row;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .footer .section-wrapper {
        flex-flow: column;
        align-items: center;
    }
}

.footer-text {
    flex: 1;
    min-width: 100%;
    font-size: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .footer-text {
        font-size: 14px;
        line-height: 130%;
    }
}

@media screen and (max-width: 767px) {
    .footer-text {
        font-size: 12px;
        text-align: center;
        line-height: 130%;
    }
}

.footer-right {
    margin-left: auto;
}

@media screen and (max-width: 767px) {
    .footer-right {
        margin-left: 0;
    }
}

.footer-right,
.footer .logo-footer {
    margin-bottom: 62px;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .footer-right,
    .footer .logo-footer {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .footer-right,
    .footer .logo-footer {
        margin-bottom: 20px;
    }
}

.menu {
    display: flex;
    margin: 0;
    padding: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    list-style: none;
    position: relative;
    box-sizing: border-box;
}

.menu-item:not(:last-child) {
    margin-right: 54px;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .menu-item:not(:last-child) {
        margin-right: 30px;
    }
}

.menu-item-url {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    text-decoration: none;
}

.menu-item-url [class*=icon] {
    margin-right: 10px;
    margin-top: -0.2em;
}

.menu-item-url:hover {
    filter: "alpha(opacity=80)";
    opacity: 0.8;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .menu-item-url {
        font-size: 13px;
    }
}

.icon-likee {
    width: 29px;
    height: 29px;
    background: url("/images/icon-likee.svg") 50% 50% no-repeat;
    background-size: contain;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .icon-likee {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .icon-likee {
        width: 20px;
        height: 20px;
    }
}

.icon-ok {
    width: 29px;
    height: 29px;
    background: url("../images/icon-ok.svg") 50% 50% no-repeat;
    background-size: contain;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .icon-ok {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .icon-ok {
        width: 20px;
        height: 20px;
    }
}

.icon-tg {
    width: 29px;
    height: 29px;
    background: url("../images/icon-tg.svg") 50% 50% no-repeat;
    background-size: contain;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .icon-tg {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .icon-tg {
        width: 20px;
        height: 20px;
    }
}

.icon-vk {
    width: 29px;
    height: 29px;
    background: url("../images/icon-vk.svg") 50% 50% no-repeat;
    background-size: contain;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .icon-vk {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .icon-vk {
        width: 20px;
        height: 20px;
    }
}

.icon-dzen {
    width: 29px;
    height: 29px;
    background: url("../images/icon-dzen.svg") 50% 50% no-repeat;
    background-size: contain;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .icon-dzen {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .icon-dzen {
        width: 20px;
        height: 20px;
    }
}

.icon-yt {
    width: 29px;
    height: 29px;
    background: url("../images/icon-yt.svg") 50% 50% no-repeat;
    background-size: contain;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .icon-yt {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .icon-yt {
        width: 20px;
        height: 20px;
    }
}

.icon-vb {
    width: 29px;
    height: 29px;
    background: url("../images/icon-vb.svg") 50% 50% no-repeat;
    background-size: contain;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .icon-vb {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .icon-vb {
        width: 20px;
        height: 20px;
    }
}

.logo {
    display: block;
    background: url("../images/logo.svg") no-repeat;
    background-size: contain;
    background-position: center;
    width: 136px;
    height: 43px;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .logo {
        width: 89px;
        height: 28px;
    }
}

@media screen and (max-width: 767px) {
    .logo {
        width: 93px;
        height: 29.404px;
    }
}

.logo-footer {
    display: block;
    /*background-size: contain;*/
    /*background: url("../images/logo-footer.svg") no-repeat center;*/
    width: 168.666px;
    height: 33.734px;
}

.logo-footer img {
    width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .logo-footer {
        width: 94px;
        height: 19px;
    }
}

@media screen and (max-width: 767px) {
    .logo-footer {
        width: 94px;
        height: 19px;
    }
}

.button {
    border: 0;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-family: "Montserrat", "Sans-serif, Arial";
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    justify-content: center;
    white-space: nowrap;
    position: relative;
    color: #000;
    background: transparent;
    font-size: 20px;
    line-height: 120%;
    font-weight: 700;
    height: 70px;
    padding: 0 30px;
    min-width: 150px;
    border-radius: 50px;
    transition: all 0.1s ease-in-out;
}

.button-text {
    padding-top: 0.2em;
    box-sizing: border-box;
}

.button:hover {
    color: inherit;
    text-decoration: none;
}

.button-white {
    color: #FF008C;
    background: #FFF;
}

.button-white:hover {
    color: #FF008C;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .button {
        font-size: 12px;
        height: 35px;
        padding: 0 25px;
    }
}

@media screen and (max-width: 767px) {
    .button {
        font-size: 16px;
        height: 56px;
        padding: 0 25px;
    }
}

.elements-list {
    display: flex;
    flex-flow: wrap row;
    gap: 28px;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .elements-list {
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .elements-list {
        gap: 20px;
    }
}


.content-footer {
    display: flex;
    align-items: center;
    gap: 49px;
    justify-content: center;
    background: linear-gradient(180deg, rgba(24, 19, 86, 0) 0%, #160F3F 100%);
    padding-top: 30px;
    padding-bottom: 35px;
    margin-top: auto;
    color: #FFF;
}

.content-footer .text {
    font-family: Unbounded;
    font-size: 18px;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
    .content-footer {
        padding-left: 34px;
        padding-right: 34px;
    }

    .content-footer .text {
        font-size: 12px;
    }
}

@media screen and (max-width: 767px) {
    .content-footer {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 23px;
    }

    .content-footer .text {
        font-size: 11px;
        max-width: 281px;
    }
}

.content {
    position: relative;
    min-height: 65vw;
    background: url("../images/main-background.svg") no-repeat center;
    background-size: cover;
}

.wrapper-fir-tree {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.wrapper-with-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    z-index: 2;
    width: 100%;
}

.hande {
    z-index: 1;
    width: 47%;
}

.fir-tree {
    transform: translateX(-42%);
    width: 38.5%;
}

.description {
    font-family: Montserrat-SemiBold;
    color: #FFFFFF;
    font-size: 22px;
    line-height: normal;
    text-align: center;
    margin-bottom: 80px;
}

.description .title {
    font-size: 1.8vw;
    margin-bottom: 15px;
    margin-top: 10px;
}

.description .text {
    font-family: Montserrat-SemiBold;
    font-size: 1.4vw;
    margin-bottom: 8px;
}

.play {
    background: #FF008C;
    border: none;
    font-family: Montserrat;
    color: #FFFFFF;
    font-size: 1.1vw;
    border-radius: 60px;
    padding: 1.1vw 2vw;
    margin-top: 1vw;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.prizes-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1;
    justify-content: space-between;
}

.left-prizes {
    display: flex;
    flex-direction: column;
    margin-top: 16%;
    margin-left: 13%;
}

.right-prizes {
    display: flex;
    flex-direction: column;
    margin-top: 3%;
    margin-right: 9%;
}

.prize {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.4vw;
    color: #FFFFFF;
}

.prize img {
    width: 13vw;
    max-width: 210px;
    height: auto;
}

.merch {
    padding-bottom: 60%;
}

.phone {
    transform: translateX(1.4vw);
}

.subscription {
    transform: translate(-110%, 10%);
    text-align: center;
}

.prize div {
    margin-bottom: 10px;
    line-height: normal;
}

.trip {
    padding-top: 50%;
    transform: translateX(-10%);
}

.br-title {
    display: none;
}


@media (max-width: 500px) {
    .wrapper-with-description {
        height: 80%;
    }

    .fir-tree {
        transform: translateX(-39vw);
        width: 80.5vw;
    }

    .content {
        min-height: 175vw;
    }

    .description {
        width: 262px;
    }

    .play {
        padding: 13px 46px;
        font-size: 12px;
        margin-top: 2vw;
    }

    .prizes-wrapper {
        font-size: 10px;
        font-family: Montserrat-SemiBold;
        bottom: 5px;
        top: unset;
        left: unset;
        overflow: scroll;
        gap: 15px;
        padding-left: 10px;
        padding-right: 10px;
        width: 95%;
    }


    .description .title {
        margin-top: 0;
        font-size: 19px;
    }

    .description .text {
        font-size: 16px;
        margin-bottom: 0;
    }

    .br-title {
        display: block;
    }

    .left-prizes {
        margin: 0;
        flex-direction: row;
        gap: 15px;
    }

    .right-prizes {
        flex-direction: row;
        margin: 0;
        gap: 15px;
    }

    .prize {
        flex-direction: column-reverse;
        font-size: 10px;
        font-family: Montserrat-SemiBold;
        height: fit-content;
        width: max-content;
    }

    .prize img {
        width: 89px;
    }

    .trip img {
        height: 90px;
        width: 103px;
    }

    .merch {
        padding: 0;
        transform: none;
    }

    .phone {
        padding: 0;
        transform: none;

    }

    .subscription {
        padding: 0;
        transform: none;

    }

    .prize div {
        font-size: 10px !important;
        font-family: Montserrat-SemiBold;
    }

    .trip {
        padding: 0;
        transform: none;

    }
}

.interactive-content {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 65vw;
    background: radial-gradient(46.56% 73.15% at 50% 3.1%, #01B4DD 0%, #005C73 100%);
    background-size: cover;
}

.interactive-left-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.counter {
    width: 17vw;
    height: 5vw;
    border-radius: 0 60px 60px 0;
    background: #FFFFFF;
    font-size: 2vw;
    color: #ff008c;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 50px;
    margin-top: 4vw;
}

.left-arrow img,
.right-arrow img {
    width: 10vw;
}

.interactive-left-prizes {
    display: flex;
    flex-direction: column;
}

.interactive-prize {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.4vw;
    line-height: normal;
    color: #FFFFFF;
    text-align: center;
}

.interactive-prize img {
    width: 13vw;
    max-width: 210px;
    height: auto;
}

.interactive-merch {
    transform: translate(10vw, 2vw);
}

.interactive-subscription {
    transform: translate(4vw, 4vw);
}

.interactive-phone {
    transform: translate(16vw, 4vw);
}

.interactive-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.fir-tree-title {
    margin-top: 36px;
    position: absolute;
}

.fir-tree-title img {
    width: 27vw;
}

.tapping-christmas-tree-wrapper {
    display: flex;
    align-items: center;
    margin-top: 120px;
}

.christmas-tree {
    width: 33vw;
    height: 33vw;
    display: flex;
}

.modal-interactive-description {
    border-radius: 20px;
    line-height: normal;
    width: 35vw;
    height: 10vw;
    background: #fff;
    font-size: 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.interactive-description-big {
    font-size: 1.1vw;
    color: #ff008c;
    margin-bottom: 5px;
}

.interactive-right-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.date-time {
    border-radius: 60px 0 0 60px;
    width: 17vw;
    height: 5vw;
    background: #FFFFFF;
    color: #ff008c;
    line-height: normal;
    font-family: Montserrat-ExtraBold;
    font-size: 1.5vw;
    margin-top: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.interactive-right-prizes {
    display: flex;
    flex-direction: column;
}

.interactive-beauty {
    transform: translate(-6vw, 6vw);
}

.interactive-trip {
    transform: translate(-8vw, 23vw);
}

.slider-interactive-prizes {
    display: none;
}

.left-arrow-mobile, .right-arrow-mobile {
    display: none;
}

@media (max-width: 768px) {
    .interactive-left-prizes, .interactive-right-prizes {
        display: none;
    }

    .fir-tree-title img {
        width: 238px;
    }

    .christmas-tree {
        width: 377px;
        height: 377px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .christmas-tree img {
        height: 90%;
        margin-top: -50px;
    }

    .left-arrow, .right-arrow {
        display: none;
    }

    .left-arrow-mobile, .right-arrow-mobile {
        display: block;
        margin-top: 150px;
    }

    .left-arrow-mobile img, .right-arrow-mobile img {
        height: 147px;
    }

    .counter {
        width: 15vw;
        height: 8vw;
        font-size: 18px;
    }

    .date-time {
        width: 25vw;
        height: 7vw;
        font-size: 11px;
    }

    .modal-interactive-description {
        border-radius: 10px;
    }

    .slider-interactive-prizes {
        position: absolute;
        font-size: 10px;
        font-family: Montserrat-SemiBold;
        bottom: 5px;
        top: unset;
        left: unset;
        overflow: scroll;
        gap: 15px;
        padding-left: 10px;
        padding-right: 10px;
        width: 95%;
        display: flex;
        justify-content: space-between;
    }

    .interactive-center {
        padding-bottom: 180px;
    }

    .modal-interactive-description {
        bottom: 150px;
        width: 367px;
        font-size: 10px;
        position: absolute;
        padding: 20px;
        height: auto;
    }

    .interactive-description-big {
        font-size: 12px;
    }

    .slider-interactive-prize {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        width: max-content;
        height: fit-content;
        text-align: center;
    }

    .slider-interactive-prize img {
        width: 89px;
    }

    .slider-interactive-trip img {
        height: 90px;
        width: 103px;
    }

    .slider-interactive-prize div {
        font-size: 10px;
        font-family: Montserrat-SemiBold;
        color: #FFFFFF;
        white-space: nowrap;
    }
}

@media (max-width: 500px) {
    .interactive-content {
        min-height: 175vw;
    }

    .modal-interactive-description {
        width: 80vw;
    }

    .christmas-tree {
        width: 300px;
        height: 300px;
        justify-content: unset;
    }

    .christmas-tree img {
        height: 90%;
        margin-top: 60px;
    }

    .left-arrow-mobile, .right-arrow-mobile {
        margin-top: 250px;
    }

    .left-arrow-mobile img, .right-arrow-mobile img {
        display: block;
        height: 109px;
    }

    .counter {
        width: 17vw;
        height: 5vw;
        font-size: 2vw;
    }

    .date-time {
        width: 17vw;
        height: 5vw;
        font-size: 1.5vw;
    }

    .date-time, .counter {
        transform: translateY(105px);
    }
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none; /* по умолчанию не интерактивен */
    transition: opacity .25s ease;
}

.overlay--visible {
    opacity: 1;
    pointer-events: auto;
}


/* Контейнер для GIF и подписи */
.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 90vw;
    width: 480px;
    text-align: center;
}


/* Ограничиваем размер GIF, сохраняя соотношение */
.overlay-gif {
    max-width: 100%;
    width: 320px;
    height: auto;
    display: block;
}


/* Подпись под GIF */
.overlay-caption {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    max-width: 85%;
}

.rules-content {
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    margin-top: 64px;
    padding-bottom: 40px;
}

.rules-title {
    font-family: Unbounded-Bold;
    font-size: 66px;
    line-height: 110%;
    background: linear-gradient(135deg, #ff008c 0%, #b400e6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.block-rules-wrapper {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.rule {
    width: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.3;
}

.first-rule-wrapper {
    background: #FF008C;
}

.second-rule-wrapper {
    background: #4549FC;
}

.third-rule-wrapper {
    background: #7417D7;
}

.fourth-rule-wrapper {
    background: #6AEBF4;
}


.second-rule,
.third-rule,
.fourth-rule {
    display: flex;
    align-items: flex-end;
    gap: clamp(20px, 5vw, 80px);
    flex-wrap: nowrap;
}

.first-rule {
    display: flex;
    align-items: flex-end;
    gap: clamp(44px, 8vw, 139px);
    flex-wrap: nowrap;
}

.first-rule div:last-child,
.second-rule div:last-child,
.third-rule div:last-child {
    padding-bottom: 2vw;
}

.fourth-rule div:last-child {
    padding-bottom: 1vw;
}

.first-rule-img,
.second-rule-img,
.third-rule-img,
.fourth-rule-img {
    display: flex;
    height: 100%;
    align-items: flex-end;
}

.first-rule-img img,
.second-rule-img img,
.third-rule-img img,
.fourth-rule-img img {
    width: clamp(70px, 11vw, 267px);
    height: auto;
}

.first-rule-img img {
    width: clamp(50px, 8vw, 167px);
    height: auto;
}


.rule > img {
    height: clamp(60px, 10vw, 140px);
    width: auto;
}


.first-rule-wrapper > img,
.fourth-rule-wrapper > img {
    margin-right: clamp(10px, 3vw, 60px);
}

.fourth-rule-wrapper div:last-child {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.post-script {
    font-family: Montserrat-SemiBold;
    font-size: 18px;
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rules-button {
    background: #FF008C;
    border: none;
    font-family: Montserrat;
    color: #FFFFFF;
    font-size: 16px;
    border-radius: 60px;
    padding: 16px 35px;
    margin-top: 25px;
    cursor: pointer;
}

@media (max-width: 1310px) {
    .rule {
        font-size: 16px;
    }

    .rules-content {
        gap: 36px;
    }

    .first-rule div:last-child,
    .second-rule div:last-child,
    .third-rule div:last-child {
        padding-bottom: 3vw;
    }
}

@media (max-width: 1050px) {

    .rules-title {
        font-size: 36px;
    }

    .block-rules-wrapper,
    .post-script {
        width: 90%;
    }

    .rules-button {
        background: #FF008C;
        border: none;
        font-family: Montserrat;
        color: #FFFFFF;
        font-size: 12px;
        border-radius: 60px;
        padding: 12px 27px;
        margin-top: 16px;
        cursor: pointer;
    }

    .post-script-description {
        font-size: 10px;
    }

    .rule {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .rules-title {
        font-size: 26px;
    }

    .first-rule,
    .second-rule,
    .third-rule,
    .fourth-rule {
        align-items: center;
    }

    .rule {
        font-size: 10px;
        height: 115px;
        align-items: center;
    }

    .first-rule div:last-child,
    .second-rule div:last-child,
    .third-rule div:last-child {
        padding-bottom: 0;
    }
}

.rating-content {
    padding: 64px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.description-rating {
    width: 50vw;
    line-height: normal;
    color: #000000;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 80px;
}

.rating-badge {
    font-size: 24px;
    background: #ff008c;
    padding: 18px 82px;
    border-radius: 30px;
    margin-top: 40px;
    color: #FFFFFF;
}

.winners-title, .rating-title {
    font-family: Unbounded-Bold;
    font-size: 66px;
    line-height: 110%;
    background: linear-gradient(135deg, #ff008c 0%, #b400e6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.winners-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 50vw;
    margin-top: 40px;
    padding: 20px;
}

.date-title {
    font-family: Unbounded-Bold;
    font-size: 30px;
}

.card {
    width: 100%;

    border: 1px solid #FF008C;
    border-radius: 12px;
    margin-inline: 20px;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Montserrat;
    font-size: 16px;
    color: #e30085;
    padding: 30px 20px;
}

.row:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}

.place {
    font-family: Unbounded-Bold;
    font-size: 16px;
    width: 40px;
}

.name {
    flex: 1;
    margin-left: 20px;
    font-size: 16px;
}

.score {
    font-family: Montserrat-ExtraBold;
    font-size: 14px;
    background: linear-gradient(135deg, #ffb991 0%, #ff008c 52.6%, #b400e6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support {
    width: 360px;
    position: relative;
    margin-right: -36vw;
    margin-top: 10px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    padding-right: 26px;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 18px;
    background: linear-gradient(135deg, #ff008c 0%, #b400e6 100%);
    height: 77px;
    border-radius: 10px 0 10px 10px;
}

.close-icon-white {
    position: absolute;
    cursor: pointer;
    right: 12px;
    top: 12px;
}

@media (max-width: 768px) {
    .rule {
        font-size: 10px;
    }


    .rating-content {
        padding: 32px 0;
    }

    .description-rating {
        width: 70vw;
    }


    .rating-title, .winners-title {
        font-size: 36px;
    }

    .rating-badge {
        font-size: 18px;
        padding: 10px 65px;
        margin-top: 20px;
    }

    .winners-wrapper {
        gap: 20px;
        margin-top: 20px;
        width: 90vw;
    }

    .date-title {
        font-size: 22px;
    }

    .description-rating {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .name, .score {
        font-size: 14px;
    }

    .support {
        margin-right: -15vw;
    }
}

@media (max-width: 484px) {
    .rating-content {
        padding: 27px 0;
    }

    .description-rating {
        width: 90vw;
    }

    .rating-title, .winners-title {
        font-size: 26px;
    }

    .rating-badge {
        font-size: 16px;
        padding: 8px 55px;
        margin-top: 16px;
    }

    .winners-wrapper {
        gap: 16px;
        margin-top: 16px;
        width: 90vw;
    }

    .date-title {
        font-size: 20px;
    }

    .description-rating {
        font-size: 16px;
        margin-top: 16px;
        margin-bottom: 36px;
    }

    .name, .score {
        font-size: 14px;
    }

    .support {
        margin-right: 0;
        margin-left: 0;
        width: 73vw;
    }
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat-SemiBold";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat-ExtraBold";
    font-style: normal;
    font-weight: 800;
    src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2");
}

@font-face {
    font-family: "Unbounded-Bold";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Unbounded-Bold.woff2") format("woff2");
}






