.new-year-locations {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 39, 68, 0.95) 50%, rgba(10, 22, 40, 0.95) 100%), url('/landing/images/new-year-2025/bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.new-year-locations__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.new-year-locations__background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(135, 206, 250, 0.1) 0%, transparent 70%);
}

/* Снежинки */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.3;
    }
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 15s; animation-delay: 0s; font-size: 1.2em; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 18s; animation-delay: 2s; font-size: 1.5em; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 12s; animation-delay: 4s; font-size: 1em; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 20s; animation-delay: 1s; font-size: 1.8em; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 16s; animation-delay: 3s; font-size: 1.3em; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 14s; animation-delay: 5s; font-size: 1.6em; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 19s; animation-delay: 0s; font-size: 1.1em; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 17s; animation-delay: 2s; font-size: 1.4em; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 13s; animation-delay: 4s; font-size: 1.7em; }
.snowflake:nth-child(10) { left: 95%; animation-duration: 21s; animation-delay: 1s; font-size: 1.2em; }

.new-year-locations__container {
    position: relative;
    z-index: 2;
}

/* Заголовок */
.new-year-locations__header {
    text-align: center;
    margin-bottom: 70px;
}

.new-year-locations__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(220, 20, 60, 0.2) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 30px;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(220, 20, 60, 0.4);
        transform: scale(1.05);
    }
}

.new-year-locations__title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow:
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(220, 20, 60, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #DC143C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.new-year-locations__subtitle {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Сетка карточек */
.new-year-locations__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.new-year-locations__card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.new-year-locations__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.new-year-locations__card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow:
        0 20px 60px rgba(255, 215, 0, 0.3),
        0 0 40px rgba(220, 20, 60, 0.2),
        0 0 80px rgba(135, 206, 250, 0.1);
}

.new-year-locations__card:hover::before {
    opacity: 1;
}

.new-year-locations__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    display: block;
    cursor: pointer;
    z-index: 2;
}

.new-year-locations__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-year-locations__image--top {
    object-position: center 30%;
}

.new-year-locations__card:hover .new-year-locations__image {
    transform: scale(1.1);
}

.new-year-locations__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(220, 20, 60, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.new-year-locations__card:hover .new-year-locations__overlay {
    opacity: 1;
}

.new-year-locations__overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.new-year-locations__card:hover .new-year-locations__overlay-content {
    transform: translateY(0);
}

.new-year-locations__overlay-content span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.new-year-locations__overlay-content svg {
    animation: rotateIcon 2s ease-in-out infinite;
}

@keyframes rotateIcon {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(90deg);
    }
}

.new-year-locations__card-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.new-year-locations__card-title {
    font-size: 28px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.new-year-locations__card-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* CTA секция */
.new-year-locations__cta {
    text-align: center;
}

.new-year-locations__btn {
    color: #fff;
    padding: 22px 45px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #DC143C 100%);
    box-shadow:
        0 10px 40px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(220, 20, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.new-year-locations__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.new-year-locations__btn:hover::before {
    left: 100%;
}

.new-year-locations__btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 50px rgba(255, 215, 0, 0.6),
        0 0 80px rgba(220, 20, 60, 0.5);
}

.new-year-locations__btn svg {
    transition: transform 0.3s ease;
}

.new-year-locations__btn:hover svg {
    transform: translateX(8px);
}

.new-year-locations__note {
    margin-top: 25px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.vbox-child img {
    max-height: calc(100vh - 75px);
}

/* Адаптив */
@media screen and (max-width: 1279px) {
    .new-year-locations {
        padding: 80px 0;
    }

    .new-year-locations__header {
        margin-bottom: 60px;
    }

    .new-year-locations__title {
        font-size: 48px;
    }

    .new-year-locations__subtitle {
        font-size: 18px;
    }

    .new-year-locations__grid {
        gap: 30px;
        margin-bottom: 50px;
    }

    .new-year-locations__btn {
        padding: 20px 40px;
        font-size: 18px;
    }
}

@media screen and (max-width: 967px) {
    .new-year-locations {
        padding: 60px 0;
    }

    .new-year-locations__header {
        margin-bottom: 50px;
    }

    .new-year-locations__badge {
        font-size: 14px;
        padding: 10px 20px;
        margin-bottom: 25px;
    }

    .new-year-locations__title {
        font-size: 40px;
    }

    .new-year-locations__subtitle {
        font-size: 16px;
    }

    .new-year-locations__grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .new-year-locations__card-content {
        padding: 25px;
    }

    .new-year-locations__card-title {
        font-size: 24px;
    }

    .new-year-locations__card-description {
        font-size: 15px;
    }

    .new-year-locations__btn {
        padding: 18px 35px;
        font-size: 17px;
    }

    .new-year-locations__note {
        font-size: 15px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 655px) {
    .new-year-locations {
        padding: 50px 0;
    }

    .new-year-locations__header {
        margin-bottom: 40px;
    }

    .new-year-locations__badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
        gap: 8px;
    }

    .new-year-locations__badge svg {
        width: 18px;
        height: 18px;
    }

    .new-year-locations__title {
        font-size: 32px;
    }

    .new-year-locations__subtitle {
        font-size: 15px;
    }

    .new-year-locations__grid {
        gap: 20px;
        margin-bottom: 35px;
    }

    .new-year-locations__card {
        border-radius: 16px;
    }

    .new-year-locations__card-content {
        padding: 20px;
    }

    .new-year-locations__card-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .new-year-locations__card-description {
        font-size: 14px;
    }

    .new-year-locations__overlay-content span {
        font-size: 16px;
    }

    .new-year-locations__overlay-content svg {
        width: 35px;
        height: 35px;
    }

    .new-year-locations__btn {
        padding: 16px 30px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .new-year-locations__btn svg {
        width: 20px;
        height: 20px;
    }

    .new-year-locations__note {
        font-size: 14px;
        margin-top: 18px;
    }

    .snowflake {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 480px) {
    .new-year-locations__title {
        font-size: 28px;
    }

    .new-year-locations__subtitle {
        font-size: 14px;
    }

    .new-year-locations__card-title {
        font-size: 20px;
    }

    .new-year-locations__card-description {
        font-size: 13px;
    }
}
