/* Reset and Base Styles */
/* Montserrat Regular */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.woff2') format('woff2'),
         url('../fonts/Montserrat/Montserrat-Regular.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-Regular.ttf') format('truetype'),
         url('../fonts/Montserrat/Montserrat-Regular.eot') format('embedded-opentype'),
         url('../fonts/Montserrat/Montserrat-Regular.svg') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Montserrat Italic */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Italic.woff2') format('woff2'),
         url('../fonts/Montserrat/Montserrat-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Montserrat Light */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Light.woff2') format('woff2'),
         url('../fonts/Montserrat/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Montserrat Light Italic */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-LightItalic.woff2') format('woff2'),
         url('../fonts/Montserrat/Montserrat-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Montserrat Medium */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Medium.woff2') format('woff2'),
         url('../fonts/Montserrat/Montserrat-Medium.woff') format('woff'),
         url('../fonts/Montserrat/Montserrat-Medium.ttf') format('truetype'),
         url('../fonts/Montserrat/Montserrat-Medium.eot') format('embedded-opentype'),
         url('../fonts/Montserrat/Montserrat-Medium.svg') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Montserrat Medium Italic */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-MediumItalic.woff2') format('woff2'),
         url('../fonts/Montserrat/Montserrat-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* Montserrat SemiBold */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2'),
         url('../fonts/Montserrat/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Montserrat SemiBold Italic */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-SemiBoldItalic.woff2') format('woff2'),
         url('../fonts/Montserrat/Montserrat-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Montserrat Bold */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Bold.woff2') format('woff2'),
         url('../fonts/Montserrat/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Montserrat Bold Italic */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-BoldItalic.woff2') format('woff2'),
         url('../fonts/Montserrat/Montserrat-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Montserrat Black */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Black.woff2') format('woff2'),
         url('../fonts/Montserrat/Montserrat-Black.woff') format('woff'),
         url('../fonts/Montserrat/Montserrat-Black.ttf') format('truetype'),
         url('../fonts/Montserrat/Montserrat-Black.eot') format('embedded-opentype'),
         url('../fonts/Montserrat/Montserrat-Black.svg') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

html {
  font-size: clamp(12px, 1.2vw, 19px);
  overflow-x: hidden;
}

@media (max-width: 480px) {
  html { font-size: 4.5vw; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[data-show] {
    opacity: 0;
}

body {
    font-family: "Montserrat", 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 1rem;
    color: #FFFFFF;
    background: #fff;
}

button,
input,
select {
    font-family: "Montserrat", 'Arial', sans-serif;

}

._mobile {
    display: none !important;
}

._desk {
    display: block;
}

._pink {
    color: #ED2F6F;
}

._underline {
    text-decoration: underline;
}

._underline:hover {
    text-decoration: none;
}

.slick-arrow {
    position: absolute;
    top: 33%;
    width: 3.5rem;
    height: 3.5rem;
    background: #ED2F6F;
    border: none;
    cursor: pointer;
    z-index: 10;
}
.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

/* Container */
.container {
    max-width: 92%;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}
.section {
    position: relative;
    z-index: 1;
}
.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 600;    
    letter-spacing: 0.05em;
    text-align: center;
    background: linear-gradient(74.27deg, #C4985E -22.18%, #F1D0AE 19.19%, #C4995E 48.74%, #FDDDC0 93.07%, #F2D1AE 107.84%, #D8B382 134.44%, #C49C5F 155.13%, #F2D1A9 234.92%, #C49B5F 273.34%);

    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: move 3s ease infinite;
}
.section-title._big {
    font-size: 3.5rem;
}

.section-text {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
}

@keyframes move {
  0% { background-position: -100% 0%; }
  100% { background-position: 100% 0%; }
}


img {
    max-width: 100%;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #E42261;
    border: none;
    color: white;
    border: none;
    padding: 1rem 1.438rem;
    text-transform: uppercase;
    border-radius: 0.75rem;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 600;
    font-family: "Montserrat", 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    z-index: 1;
}

.btn:hover {
    background: #FF276D;
    transform: translateY(-0.125rem);
}

.btn:disabled {
    background: rgba(237, 47, 111, 0.15);
    cursor: not-allowed;
}

.btn:disabled:before {
    background: #ccc;
}

.btn:disabled:after {
    background: #ccc;
}

.btn:disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

.btn--bordered {
    gap: 0.625rem;
    width: max-content;
    background: transparent;
    color: #FDF8CF;
    border: 1px solid #FDF8CF;
    text-decoration: none;
}

.btn--bordered:hover {
    background: transparent;

}

.btn--md {
    height: 4.25rem;
    font-size: 1.5rem;
}

.btn--wb {
    display: block;
    width: 3.25rem;    
    height: 3.25rem;
    transition: all 0.3s ease;
}

.btn--wb img{
    width: 100% ;
}

.btn--wb:hover {
    transform: translateY(-0.125rem);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0 0.5rem;
    background: rgba(32, 24, 20, 0.7);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 2.563rem;
    margin-right: 6rem;
    display: block;
}
.nav-menu {
    flex: auto;
    display: flex;
}
.nav-menu__list {
    display: flex;
    list-style: none;
    margin: auto;
    gap: 4.475rem;
}

.nav-menu__list a {
    text-decoration: none;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-menu__list a:hover {
    color: #e91a85;
}

.personal-cabinet {
    /* button */

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: none;
    font-size: 0.875rem;
    border: none;
    color: #FFF;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s ease;
}

.personal-cabinet:hover {
    color: #ED2F6F;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 32px;
    height: 2px;
    background: #FDF8CF;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}
.hamburger span:nth-child(2) {
    width: 70%;
}
.hamburger span:nth-child(3) {
    width: 80%;
}


.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -8px);
    width: 100%;
}

.hamburger.dark span {
    background: #2C2A25;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;

}
.video-bg {
    transform: scale(1);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0; 
    position: fixed; 
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-kv {
    position: absolute;
    top: -3rem;
    left: -4.4rem;
    width: 53vw;
}
@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-1.25rem) translateX(0.625rem); }
    100% { transform: translateY(0) translateX(0); }
}


.hero-content {
    padding-top: 7.3rem;
}

.hero-left {
    position: relative;
}

.hero-right {
    width: 55%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-title {
    height: 24.625rem;
    margin-right: auto;
}

.hero-subtitle {
    margin-top: -1rem;
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
    margin-left: auto;
    color: #FDF8CF;
}

.hero-maksim {
    height: 3.125rem;
}

.hero-diamond {
    height: 4rem;
    margin-bottom: -1.5rem;
}

.steps {
    position: relative;
    padding: 9.3rem 0;
    z-index: 10;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.8rem;
    margin-bottom: 5.313rem;
    padding: 0 1.5rem;
    gap: 4.375rem;
}

.steps-list__block {
    text-align: center;
}

.steps-list__block:first-child  .steps-list__block-image{
    width: calc(100% + 2rem);
}

.steps-list__block-image-wrapper {
    width: 11.5rem;
    height: 11.5rem;
    position: relative;
    display: block;
    margin: 0 auto 1.75rem;
}
.steps-list__block-image { 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
}

.steps-list__block-title { 
    margin-bottom: 1.1rem;
    font-size: 1.75rem;
    line-height: 1;
    color: #FDF8CF;
    font-weight: 600;
}

.steps-list__block-description {
    font-size: 1rem;
    line-height: 1.4;
}

.steps-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem
}

/* Products */

.products:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 200%;
    background: url('../images/products-bg.png') no-repeat center;
    background-size: auto 100%;
    pointer-events: none;
}

.products-slider-slide {
    padding: 0.75rem;
    text-align: center;
}

.products-slider-slide__img {
    max-width: 90%;
    max-height: 80%;
}

.products-slider-slide__img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18.75rem;
    width: 100%;
    margin-bottom: 1.75rem;
    background: rgba(21, 14, 10, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 2.5rem;
}

.products-slider-slide__title {
    max-width: 90%;
    margin: auto;
    color: #FDF8CF;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.1;
}

.products-slider-slide__text {
    max-width: 80%;
    margin: 0 auto 0.75rem;
    font-size: 1rem;
    font-weight: 400;
}

.products-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Prizes Section */
.prizes {
    padding: 8rem 0 3.5rem;
}

.prizes-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.prizes .section-title {
    text-align: left;
}

.prizes-shop-logo {
    width: 11.938rem;
}

.prizes-shine img {
    position: absolute; 
    animation: shine 5s infinite;
}

@keyframes shine {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(5deg);
    }
    100% {
        opacity: 0.2;
    }
}

.prizes-shine img:nth-child(1) {
    width: 11rem;
    top: 2rem;
    left: 36%;
}

.prizes-shine img:nth-child(2) {
    width: 3.875rem;
    top: 9rem;
    left: 57%;
    animation-duration: 3s;
    animation-direction: reverse;
}

.prizes-shine img:nth-child(3) {
    width: 3.875rem;
    top: 25rem;
    right: 5%;
    animation-duration: 4s;
}

.prizes-shine img:nth-child(4) {
    width: 4.625rem;
    top: 32rem;
    left: 7%;
    animation-duration: 3s;
    animation-direction: reverse;

}

.prizes-shine img:nth-child(5) {
    width: 3.313rem;
    top: 55rem;
    right: 36%;
    animation-duration: 5.5s;
}

.prizes-container {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.prize-card {
    display: flex;
    text-align: left;
    align-items: flex-start;
}



.prize-card h3 {
    font-size: 2rem;
    margin-bottom: 0.95rem;
    line-height: 2rem;
    color: #ED2F6F;
    font-weight: 600;
}

.prize-content p {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 400;
}

.prize-card-img {
    height: auto;
}

.prize-card:nth-child(2) {
    margin-left: auto;
    margin-top: -16rem;
    margin-right: -1rem;
}

.prize-card:nth-child(2) .prize-card-img {
    width: 22.688rem;
}

.prize-card:nth-child(2) .prize-content {
    width: 16.563rem;
    margin-top: 16.3rem;
    margin-right: -2rem;
}

.prize-card:nth-child(3) {
    margin-top: -10rem;
    margin-right: auto;
    margin-left: 2rem;

}

.prize-card:nth-child(3) .prize-card-img {
    width: 20.25rem;

}

.prize-card:nth-child(3) .prize-content {
    width: 21.625rem;
    margin-top: 12rem;
    margin-left: 2rem;
}

.main-prize-card {
    margin-top: -8.8rem;
    margin-left: -4rem;
}

.main-prize-card .prize-card-img{
    width: 34.5rem;
}

.main-prize-card .prize-content {
    width: 21.625rem;
    margin-top: 9rem;
    margin-left: -2rem;
}

.main-prize-card h3 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.prizes-note {
    margin-top: 4rem;
    margin-left: 6rem;
    font-size: 0.75rem;
}

/* Garant Prizes Section */

.garant-prizes { 
    text-align: center;
}

.garant-prizes-title {
    margin-bottom: 13.6rem;
    font-weight: 600;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    color: #2A1E1A;
}

.garant-prizes-text {
    max-width: 33%;
    margin-bottom: 1.2rem;
    color: #2A1E1A;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 400;
}

.garant-prizes-text p:not(:last-child) {
    margin-bottom: 0.3rem;
}

.garant-prizes-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0;
    border-radius: 5rem;
    background: linear-gradient(74.27deg, #C4985E -22.18%, #F1D0AE 19.19%, #C4995E 48.74%, #FDDDC0 93.07%, #F2D1AE 107.84%, #D8B382 134.44%, #C49C5F 155.13%, #F2D1A9 234.92%, #C49B5F 273.34%);
}

.garant-prizes-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 105%;
    height: 124%;
    background: url('../images/prizes/decor.png') no-repeat center top;
    background-size: contain;
    pointer-events: none;
}

.garant-prizes-items-img {
    position: absolute;
}

.garant-prizes-items-img:nth-child(1) {
    width: 33.95rem;
    top: 0rem;
    left: -5rem;
}


.garant-prizes-items-img:nth-child(2) {
    width: 24.35rem;
    top: -6.7rem;
    right: -4.3rem;
}

.garant-prizes-items-img:nth-child(3) {
    width: 33.35rem;
    top: 18.9rem;
    right: -4.2rem;
}

.garant-prizes-note {
    text-align: right;
    margin-top: 1rem;
    margin-right: 4rem;
    font-size: 0.75rem;
}


/* Footer */
.footer {
    position: relative;
    width: 100vw;
    padding: 1.5rem 0;
    opacity: 1;
    font-size: 0.88vw;
    z-index: 1;
    /*margin: 92vw 0vw 0vw -6vw;*/
}

.footer-content {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 8.188rem;
    margin-right: 3.75rem;
}

.footer-shop-logo {
    width: 7.5rem;
}

.footer-links {
    display: flex;
    gap: 4.17vw;
    margin-left: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 100%;
    letter-spacing: 0;

}

.footer-links > a {
    color: #ED2F6F;
    text-decoration: none;
}

.footer-links > a:hover {
    color: white;
}

.footer-contact {
    color: #86827D;  
    display: flex;
    gap: 0.37vw;   
    align-items: center;
}

.footer-contact a {
    color: #ED2F6F; 
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

/* Page */

.page {
    padding-top: 10.85rem;

}

.page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.8rem;
    position: relative;
}

.page-title {
    font-size: 4rem;
    color: #E42261;
    line-height: 1;
    margin-bottom: 2rem;
}

.page-title:only-child {
    margin-bottom: 3.25rem;
}

.page-title--gigant {
    font-size: 9.75rem;
    line-height: 1;
    font-weight: 600;
    background: linear-gradient(74.27deg, #C4985E -22.18%, #F1D0AE 19.19%, #C4995E 48.74%, #FDDDC0 93.07%, #F2D1AE 107.84%, #D8B382 134.44%, #C49C5F 155.13%, #F2D1A9 234.92%, #C49B5F 273.34%);

    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: move 3s ease infinite;
}

.page-header__text {
    max-width: 35%;
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
}
.page-header__text p:not(:last-child){
    margin-bottom: 0.8rem;
}

.page-header .btn {
    margin-top: 2rem;
    width: 17.5rem;
    max-width: 100%;
}

/* Responsive Design */

@media (max-width: 820px) {
    /* Better button spacing */
    .btn {
        font-size: 0.875rem;
        padding: 1rem 1.5rem;
    }

    .btn--md {
        font-size: 1.5rem;
    }
    /* Header */
    .header {
        padding: 0.5rem 0;
    }
    
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0;
        position: relative;
    }
    
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .nav-logo {
        order: 1;
        z-index: 10000;
    }
    
    .nav-logo .logo {
        height: 2.625rem;
        margin-right: 0;
    }
    
    .personal-cabinet {
        order: 3;

        font-size: 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(32, 24, 20, 1);
        backdrop-filter: blur(40px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu__list {
        flex-direction: column;
        gap: 0px;
        margin: 0;
        text-align: center;
    }

    .nav-menu__list li {
        list-style: none;
        margin: 0;
    }
    
    .nav-menu__list a {
        font-size: 1.25rem;
        color: #FFF;
        text-decoration: none;
        font-weight: 600;
        padding: 1rem 2rem;
        display: block;
        text-align: center;
        transition: color 0.3s ease;
        white-space: nowrap;
    }
    
    .nav-menu a:hover {
        color: #e91a85;
    }

    .personal-cabinet {
        width: 14.375rem;
        max-width: 100%;
        font-size: 1.25rem;
        padding: 1rem;
        border: 1px solid #FDF8CF80;
        border-radius: 0.5rem;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 2rem;
        min-height: auto;
    }

    .hero-content {
        gap: 2rem;
        padding-top: 2rem;
    }
    
    .hero-title {
        height: auto;
        width: 25vw;
        margin: 0 auto 1rem 10rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .steps {
        margin: 0 auto;
        gap: 0.5rem;
        max-width: 100%;
    }
    
    .step {
        gap: 1rem;
        text-align: left;
        align-items: center;
        max-width: 100%;
    }
    
    .btn-register {
        margin: 0 auto 0;
        font-size: 1rem;
        padding: 1rem 2rem;
        display: block;
        width: fit-content;
    }
    .btn-register._mobile {
        display: none;
    }
    
    /* Prizes Section */
    .prizes {
        padding: 2rem 1rem;
    }
    
    .prize-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
   
    /* Footer */
    .footer {
        margin-top: 10rem;
    }
}

@media (max-width: 480px) {
    ._mobile {
        display: block !important;
    }

    ._desk {
        display: none;
    }

    /* Header */
    .header {
        padding: 0.6rem 0;
    }

    .page {
        min-height: 100vh;
        padding-top: 5.2rem;
        background-size: 450%;
    }

    .page-header {
        margin-bottom: 1.6rem;
    }
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-title._big {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-text {
        margin-top: 0.8rem;
        margin-bottom: 0.75rem;
        font-size: 0.75rem;
    }

    .page-title {
        margin-bottom: 0.15rem;
        font-size: 2.5rem;
    }

    .page-title:only-child {
        margin-bottom: 4.063rem;
    }

    .page-title--gigant {
        margin-bottom: 1rem;
        font-size: 6.813rem;
    }

    .page-header__text {
        max-width: 90%;
        font-size: 1rem;
    }

    .page-header .btn {
        margin-top: 2rem;
    }

    .btn--md {
        height: 3.75rem;
        font-size: 1.25rem;
    }
    .nav {
    }
    
    .personal-cabinet {

    }
    
    .nav-logo .logo {
        height: 3rem;
    }
    
    .nav-menu__list a {
        font-size: 1.3rem;
        padding: 1.5rem 2rem;
    }
    
    /* Hero */
    .hero {
        padding-top: 4.6rem;
        min-height: auto;
    }
    .hero:after,
    .hero:before {
        display: none;
    }
    
    .hero-content {
        padding-top: 1rem;
        gap: 1.5rem;
    }

    .hero-right {
        position: relative;
        width: 100%;
        align-items: flex-start;
        z-index: 10;
    }
    
    .hero-title {
        width: 78%;
        margin: 0 auto 19rem;
    }
    
    .hero-subtitle {
        width: 100%;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        margin-left: 1rem;
    }

    .hero-maksim {
        height: 2rem;
    }

    .hero-diamond {
        height: 2.4rem;
        margin-bottom: -0.8rem;
    }

    .hero-kv {
        width: 100%;
        top: 7rem;
        left: 0;
        pointer-events: none;
    }

    .steps {
        width: 100%;
        padding: 7.6rem 0 1rem;
        margin: 0 auto;
        gap: 0.4rem;
        align-items: flex-start;
    }
    .steps-list,
    .steps-buttons {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .steps-buttons .btn{
        width: 100%; 
    }
    .steps-list {
        margin-top: 3.2rem;
        margin-bottom: 3.313rem;
        gap: 3.175rem;
    }
    .step {
        align-items: center;
        text-align: left;
        gap: 1rem;
    }
    
    .steps-list__block {
        display: flex;
        text-align: left;
        align-items: center;
    }

    .steps-list__block-image-wrapper {
        width: 7rem;
        flex-shrink: 0;
        margin-right: 1rem;
        margin-bottom: 0;
        height: auto;
    }

    .steps-list__block-title {
        margin-bottom: 0.75rem;
        font-size: 1.25rem;
    }

    .steps-list__block-description {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .btn-register {
        margin: 0 auto 0;
        font-size: 0.875rem;
        width: 100%;
    }
    .btn-register._mobile {
        display: block;
    }

    .products {
        padding-top: 3.8rem;
    }

    .products-slider-slide {
        padding: 0.5rem;
    }
    .products-slider-slide__img-wrapper {
        height: 15rem;
        margin-bottom: 1rem;
    }

    .products-slider-slide__title {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .products-slider-slide__text {
        font-size: 0.75rem;
    }
    
    .products-buttons {
        margin-top: 1.8rem;
    }

    .btn--wb {
        flex-shrink: 0;
    }

    .products-buttons .btn {
        white-space: normal;
        height: 3.25rem;
    }

    /* Prizes */
    .prizes {
        padding: 4.8rem 0rem 0rem;
    }
    .prizes-shop-logo {
        width: 7.138rem;
    }
    .prizes-container {
        display: flex;
        flex-direction: column;
        gap: 2rem
    }
    
    .prize-card {
        width: 100%;
        padding: 0;
        margin-bottom: 0rem;
        flex-direction: column;
    }

    .main-prize-card {
        margin-top: 1rem;
        margin-left: 0;
    }

    .main-prize-card .prize-card-img {
        width: 17.8rem;
        margin-left: -1rem;

    }

    .main-prize-card .prize-content {
        width: 70%;
        margin-left: auto;
        margin-right: -0.5rem;
        margin-top: -2rem;
        text-align: right;
    }

    .prize-card:nth-child(2) {
        margin-top: -0.2rem;
        margin-right: 0;
    }
    .prize-card:nth-child(2) .prize-card-img {
        width: 10.8rem;
        margin-left: auto;
        order: -1;
    }

    .prize-card:nth-child(2) .prize-content {
        width: 60%;
        margin-top: -5rem;
        margin-right: 0;
    }

    .prize-card:nth-child(3) {
        margin-top: 0;
        margin-left: 0;
    }

    .prize-card:nth-child(3) .prize-card-img {
        width: 11.3rem;
    }

    .prize-card:nth-child(3) .prize-content {
        margin-top: -1.7rem;
        width: 60%;
        margin-left: 5.3rem;
    }
    
    .prize-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .prize-content p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .prizes-shine img:nth-child(1) {
        width: 5rem;
        top: 7rem;
        left: 41%;
    }

    .prizes-shine img:nth-child(2),
    .prizes-shine img:nth-child(3) {
        display: none;
    }

    .prizes-shine img:nth-child(4) {
        width: 3rem;
        top: 29rem;
        left: 18%;
    }

    .prizes-note {
        font-size: 0.625rem;
        line-height: 1.2;
        width: 100%;
        margin-top: 2.4rem;
        margin-left: 0;
    }
    .garant-prizes-title {
        margin-bottom: 1rem;
        font-size: 1.563rem;
    }

    .garant-prizes {
        padding-top: 6.5rem;
        padding-bottom: 2rem;
        overflow: hidden;
    }

    .garant-prizes-content {
        padding: 8rem 0 14.3rem;
        border-radius: 2rem;
    }

    .garant-prizes-content::before {
        width: calc(100% + 2rem);
        left: -1rem;
        height: 128%;
        background-image: url('../images/prizes/decor-m.png');
        background-position: bottom left;
        background-size: 100%;
    }

    .garant-prizes-text {
        max-width: 80%;
        margin-bottom: 1rem;
        font-size: 0.75rem;
    }
    .garant-prizes-items-img:nth-child(1) {
        width: 14.45rem;
        top: -6.5rem;
        left: 6.6rem;
    }

    .garant-prizes-items-img:nth-child(2) {
        width: 19.25rem;
        top: 22.9rem;
        right: auto;
        left: -1.4rem;
    }

    .garant-prizes-items-img:nth-child(3) {
        width: 16.65rem;
        top: -3.7rem;
        right: 4.3rem;
    }

    .garant-prizes-items-img:nth-child(4) {
        width: 7.95rem;
        right: -1rem;
        top: -0.2rem;
    }

    .garant-prizes-note {
        width: 50%;
        margin-left: 1.5rem;
        margin-right: auto;
        font-size: 0.625rem;
        line-height: 1.2;
        text-align: left;
    }
    /* Footer */
    .footer {
        margin-top: 0rem;
    }

    .footer-logo {
        width: 11.225rem;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .footer-content {
        display: flex;
        gap: 1.6rem;
        flex-direction: column;
    }

    .footer::before {
        background-size: 145%;
        background-position: bottom left;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 1.25rem;
        max-width: 100%;
    }
    
    
    
    
}

/* General Form Styles - Shared across pages */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    font-size: 1.125rem;
    color: #BB9C9C;
    margin-left: 1.5rem;;
    margin-bottom: 0.05rem;
    font-style: italic;
    font-weight: bold;
    transition: 0.3s;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #2A1E1A;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    color: #2A1E1A;
    background: transparent;
    transition: border-color 0.3s ease;
    font-family: "PT Sans", 'Arial', sans-serif;

}

.form-group select {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #FFF url('../images/arrow-down.svg') no-repeat center right 1.5rem;
    background-size: 1rem;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #2A1E1A;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ED2F6F;
}

.form-group label:has(+ input:focus),
.form-group label:has(+ select:focus),
.form-group label:has(+ textarea) {
    color: #000000;
}



.form-group textarea {
    border-radius: 1rem;
    resize: vertical;
    min-height: 9.375rem;
    background: white;
}

.form-note {
    margin-top: 1rem;
    color: #AE8E91;
    font-size: 1.125rem;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    line-height: 1.1;
}

.form-option {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.form-option p {
    color: #2A1E1A;
    margin-bottom: 0rem;
    margin-right: 0.5rem;
    font-style: italic;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.1;
}

.form-option button {
    text-transform: uppercase;
    font-weight: bold;
    color: #E42261;
    font-size: 0.75rem;
    border: none;
    background: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
    cursor: pointer;
}
.form-option button:hover {
    border-color: currentColor;
}

.form-error { 
    position: absolute;
    top: 100%;
    left: 0;
    color: #E42261;
    padding: 0.1rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 0.25rem;
}

.form-error:empty {
    display: none;
}


.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: #2A1E1A;
    font-size: 0.75rem;
    line-height: 1.1;
    cursor: pointer;

}
.checkbox-label a {
    color: #272727;
    text-decoration: underline;
}
.checkbox-label input{
    display: none;
}

.checkmark {
    display: block;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid #2A1E1A;
    background-color: transparent;
    border-radius: 0.375rem;
    margin-right: 0.8rem;
}
.checkbox-label input:checked + .checkmark {
    background: url('../images/success.svg') no-repeat center;
    background-size: cover;   
    border-color: #ED2F6F; 
}

.forgot-password {
    font-size: 0.675rem;
    color: #E42261;
    
}

@media (max-width: 480px) {

    .form {
        gap: 0.8rem;
    }

    .form-group label {
        margin-left: 1.3rem;
        font-size: 0.938rem;
    }

    .checkbox-group {
        width: 100%;
        padding-left: 0;
    }

}

/* Modal/Popup Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    padding: 10vh 0;
    justify-content: center;
    align-items: flex-start;
    overflow: auto;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}



.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.modal-content {
    position: relative;
    padding: 3.5rem 9.375rem;
    background: linear-gradient(74.27deg, #C4985E -22.18%, #F1D0AE 19.19%, #C4995E 48.74%, #FDDDC0 93.07%, #F2D1AE 107.84%, #D8B382 134.44%, #C49C5F 155.13%, #F2D1A9 234.92%, #C49B5F 273.34%);
    border-radius: 5rem;
    width: 43.75rem;
    max-width: calc(100% - 2rem);
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    z-index: 1;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.modal-title {
    margin: 0 auto 0.5rem;
    font-weight: 600;
    color: #2A1E1A;
    line-height: 1;
    font-size: 2.5rem;
    text-align: center;
}

.modal-title:not(:has( + .modal-subtitle )) {
    margin-bottom: 1.5rem;
}

.modal-subtitle {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.1;
}


.modal-close {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    font-weight: lighter;
    background: url('../images/close.svg') no-repeat center;
    background-size: contain;
    padding: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-message {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    line-height: 1.3;
    text-align: center;
    color: #2A1E1A;
}

.modal-message p:not(:last-child) {
    margin-bottom: 1rem;
}

.modal-list li {
    display: flex;
    margin-bottom: 2rem;
    line-height: 1.1;
    list-style: none;
    counter-increment: my-counter;
    font-style: italic;
    font-weight: bold;
}


.modal-list li::before {
    content: counter(my-counter);
    width: 1.125rem;
    height: 1.125rem;
    line-height: 1.125rem;
    flex-shrink: 0;
    font-size: 0.625rem;
    border-radius: 1rem;
    margin-right: 0.625rem;
    text-align: center;
    color: #FFF;
    background-color: #E42261;
    display: block;
}

.modal-form {
    width: 19.813rem;
    max-width: 100%;
}

.btn-modal {
    width: 100%;
    margin: auto;
}

.white-modal .modal-content {
    padding: 3.5rem 3.75rem;
    background: #fff;
}

.white-modal .modal-title {
    color: #E42261;
}

.modal-note {
    margin-top: 1rem;
    color: #2A1E1A;
    font-size: 0.75rem;
}

.modal-note a {
    color: #2A1E1A;

}

@media (max-width: 480px) {
    .modal {
        padding: 2rem 0;
    }
    .modal-content {
        min-width: 100%;
        margin: 20px;
        padding: 3.5rem 1.25rem;
        border-radius: 2rem;
    }

    .modal-close {
        width: 1.5rem;
        height: 1.5rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .modal-title {
        margin-bottom: 1rem;
        font-size: 2rem;
        line-height: 0.9;
    }

    .modal-title:not(:has( + .modal-subtitle )) {
        margin-bottom: 2rem;
    }

    .modal-subtitle {
        font-size: 1.125rem;
        line-height: 1.1;
    }

    .modal-message {
        margin-top: 0;
        margin-bottom: 2rem;
        font-size: 1rem;
    }
    .modal-list li {
        margin-bottom: 0.8rem;
    }
    .white-modal .modal-content {
        padding: 3.5rem 1.25rem;

    }
    .white-modal .modal-title {
        font-size: 2rem;
    }
}

/* Photo Upload Modal Styles */
.photo-upload-modal-content {
    max-width: 50rem;
}

.upload-instructions {
    margin-bottom: 1.5rem;
    color: #2E2925;
    font-size: 1.125rem;
    line-height: 1.2;
    
}

.upload-instructions p {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    font-style: italic;
    font-weight: bold;

}

.upload-instructions i {
    position: absolute;
    left: 0;
    top: 0;
}

.upload-instructions strong {
    font-weight: bold;
}

.requirements-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #E42261;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-decoration: underline;
}

.upload-area {
    border: 2px dashed #2A1E1A;
    background: none;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 1rem;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.upload-area.dragover {
    border-color: #E42261;
    background-color: rgba(228, 34, 97, 0.1);
    transform: scale(1.02);
}

.upload-area-error {
    margin-bottom: 1rem;
    color: #E42261;
    font-size: 0.875rem;
}

.upload-content {
    pointer-events: none;
}

.upload-text {
    color: #2A1E1A;
    font-size: 1rem;
    line-height: 1.3;
}

.upload-text img {
    width: 4rem;
    margin-bottom: 1rem;
}

.upload-text p:not(:last-child) {
    margin-bottom: 1rem;
}

.preview-container {
    position: relative;
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
}

.preview-container img {
    width: 100%;
    height: auto;
    max-height: 15rem;
    object-fit: contain;
    border-radius: 0.5rem;
}

.remove-photo-btn {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #E42261;
    color: white;
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(228, 34, 97, 0.3);
}

.remove-photo-btn:hover {
    background: #FF276D;
    transform: scale(1.1);
}

.upload-submit-btn {
    margin: 0 auto;
    width: 100%;
}



@media (max-width: 480px) {
    .photo-upload-modal-content {
        padding: 2rem 1.25rem;
    }
    
    .upload-instructions {
        font-size: 0.9rem;
    }
    
    .requirements-title {
        font-size: 1rem;
    }
    
    .upload-area {
        padding: 2rem 1rem;
    }
    
    .upload-text {
        font-size: 1rem;
    }
    
    .preview-container img {
        max-height: 12rem;
    }
}

.requirements-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 3.5rem 3.125rem;
    gap: 2rem
}

@media (max-width: 480px) {
    .requirements-modal-content {
        display: flex;
        flex-direction: column;
        padding: 3.5rem 2.188rem;

    }
}

table {
    border-collapse: collapse;
    width: 100%;
    margin: 2rem auto;
    font-style: italic;
    border: none;
}

th, td {
    padding: 1.063rem 1.125rem 1.063rem 3.125rem;
    text-align: left;
    line-height: 1;
}

th {
    font-family: 'Dessert Script', sans-serif;        
    font-size: 1.5rem;                 
    letter-spacing: 0.06em;                   
}

td  {
    border-bottom: 2px solid #DAE5EE;
    font-size: 1.5rem;                 

}

tbody tr:hover {
    background-color: #f0f0f0;
}

@media (max-width: 480px) {
    table {
        margin: 0rem auto;
    }
    th, td {
        padding: 0.7rem;
        font-size: 1rem;
    }
}


/* Winners Section */
.winners {
    padding: 5.3rem 0 4.9rem;
    position: relative;
}

.winners-title {
    background: #ED2F6F;
    color: #FDF8CF;
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    padding: 1.2rem 2rem;
    border-radius: 2.5rem;
    margin-bottom: 5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.winners-header,
.winner-item {
    display: grid;
    grid-template-columns: 0.65fr 1.2fr 1.15fr;
    gap: 5.25rem;
}

.winners-header-column {
    text-align: left;
}

.winners-header-column:last-child {
    text-align: center;
}

.winners-header-label {
    color: #E4DED8;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.winners-search {
    width: 100%;
    padding: 0.7rem 0.8rem;
    background: transparent;
    border: 1px solid #444;
    border-radius: 0;
    color: #FDF8CF;
    text-align: left;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.winners-search:focus {
    outline: none;
    border-color: #ED2F6F;
}

.winners-search::placeholder {
    color: #888;
}

.winners-filter {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border: 1px solid #444;
    border-radius: 0;
    color: #FDF8CF;
    font-size: 0.875rem;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url('../images/arrow-down.svg') no-repeat center right 1rem;
    background-size: 1rem;
    transition: border-color 0.3s ease;
}

.winners-filter:focus {
    outline: none;
    border-color: #ED2F6F;
}

.winners-filter option {
    background: #2A2016;
    color: #FDF8CF;
}

.winners-data-container {
    max-height: 528px;
    overflow-y: auto;
}

/* Custom scrollbar */
.winners-data-container::-webkit-scrollbar {
    width: 12px;
}

.winners-data-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.winners-data-container::-webkit-scrollbar-thumb {
    background: #ED2F6F;
    border-radius: 6px;
    border: 2px solid rgba(42, 32, 22, 0.5);
}

.winners-data-container::-webkit-scrollbar-thumb:hover {
    background: #FF276D;
}

.winners-list {
    padding-right: 1rem;
}

.winner-item {
    align-items: center;
    border-bottom: 1px solid #2A1E1A;
    transition: background-color 0.3s ease;
}

.winner-item:hover {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.winner-item:last-child {
    border-bottom: none;
}

.winner-item:first-child .winner-prize {
    border-radius: 1rem 1rem 0 0;
}

.winner-item:last-child .winner-prize {
    border-radius: 0 0 1rem 1rem;
}

.winner-item:only-child .winner-prize {
    border-radius: 1rem;
}

.winner-phone {
    color: #FFF;
    font-size: 1.125rem;
    font-weight: 400;
}

.winner-draw {
    color: #FFF;
    line-height: 1;
    font-size: 1.125rem;
}

.winner-draw-title {
    font-weight: 400;
    margin: 0.25rem 0;
}

.winner-draw-date {
    color: #86827D;
    font-size: 0.75rem;
}

.winner-prize {
    margin-bottom: -1px;
    background: linear-gradient(90deg, #ED2F6F 0%, #E42261 100%);
    color: #FDF8CF;
    padding: 1.75rem 2rem 1.5rem;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
}

.winners-load-more {
    display: block;
    margin: 0.5rem 0 0;
}

.winners-load-more:hover {
    background: #ED2F6F;
    border-color: #ED2F6F;
    color: white;
}

.winners-load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.winners-load-more:disabled:hover {
    background: transparent;
    border-color: #FDF8CF;
    color: #FDF8CF;
}

.winner-item.highlighted {
    background: rgba(237, 47, 111, 0.1);
    border-color: #ED2F6F;
}

.winners-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: #888;
    font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .winners-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .winners-title {
        font-size: 2rem;
        padding: 1rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .winner-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .winner-prize {
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .winners {
        padding: 3.5rem 0 2.5rem;
    }
    
    .winners-title {
        font-size: 1.95rem;
        padding: 1.3rem;
        margin-bottom: 1.7rem;
        border-radius: 2rem;
    }

    .winners-header {
        gap: 1.5rem;
    }

    .winners-header-label {
        display: none;
    }

    .winners-search {
        padding: 0.6rem 0.8rem;
    }
    
    .winners-data-container {
        max-height: 36.5rem;
        margin-bottom: 1.5rem;
    }

    .winner-item {
        padding: 0.5rem 0;
        gap: 0.5rem;
    }
    .winner-prize {
        padding: 0;
        background: none;
        border-radius: 0 !important;
        text-align: left;
        font-size: 1.125rem;
        color: #ED2F6F;
    }
}