.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    width: 100%;
    height: 100%;
}

.darkpink {
    background: linear-gradient(to bottom, #aa4e65 0%, #aa4e65 55%, #EFC1CB 85%, #F5CDD3 100%);
    height: 1000px;
    position: relative;
    z-index: 1;
}

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

.left-content {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.video-card {
    width: 520px;
    height: 600px;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 35px rgba(255, 180, 200, 0.8), 0 0 60px rgba(255, 140, 170, 0.6), 0 0 85px rgba(255, 100, 140, 0.4);
    animation: floatSoft 3s ease-in-out infinite;
    margin-top: 150px;
    margin-left: 30px;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.video-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 60px;
    background: linear-gradient(45deg, rgba(255, 180, 200, 0.3), rgba(255, 140, 170, 0.5), rgba(255, 100, 140, 0.3));
    z-index: -1;
    filter: blur(25px);
    animation: glowMove 4s ease-in-out infinite alternate;
    opacity: 0.9;
}

.video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(170, 78, 101, 0.1);
    border-radius: 50px;
    pointer-events: none;
}

@keyframes glowMove {
    0%, 100% { transform: translate(0, 0) scale(1); background: linear-gradient(45deg, rgba(255, 180, 200, 0.4), rgba(255, 140, 170, 0.6), rgba(255, 180, 200, 0.4)); }
    33% { transform: translate(3px, -3px) scale(1.05); background: linear-gradient(135deg, rgba(255, 160, 190, 0.5), rgba(255, 120, 160, 0.7), rgba(255, 160, 190, 0.5)); }
    66% { transform: translate(-3px, 2px) scale(0.95); background: linear-gradient(225deg, rgba(255, 200, 220, 0.3), rgba(255, 150, 180, 0.5), rgba(255, 200, 220, 0.3)); }
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.ost {
    margin-top: 150px;
    letter-spacing: 0.5px;
    font-family: "Coolvetica";
    font-size: 60px;
    color: #ffffff;
    word-spacing: 7px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.10), 0 0 16px rgba(255, 255, 255, 0.4);
    animation: floating 4s ease-in-out infinite;
    max-width: 600px;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.slub {
    letter-spacing: 0.5px;
    font-family: "Czizh";
    font-size: 68px;
    color: #ffffff;
    max-width: 650px;
}

.knopka {
    display: inline-block;
    padding: 16px 50px;
    background: #ffffff;
    color: #aa4e65;
    border: none;
    border-radius: 60px;
    font-size: 24px;
    font-family: "Coolvetica", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 10px 0px rgba(105, 49, 63, 0.6);
    text-decoration: none;
    white-space: nowrap;
}

.knopka:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(170, 78, 101, 0.5);
}

.pink {
    background: linear-gradient(to bottom, #F5CDD3 0%, #F5CDD3 55%, #e4899d 85%, #aa4e65 100%);
    height: 1000px;
    position: relative;
}

.n {
    font-family: "Coolvetica";
    color: #AA4E65;
    font-size: 65px;
    position: absolute;
    left: 55%;
    transform: translateX(calc(-50% - 150px));
    top: 0px;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.k {
    font-family: "Czizh";
    color: #AA4E65;
    font-size: 65px;
    position: absolute;
    left: 48%;
    transform: translateX(calc(-50% + 150px));
    top: 60px;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.glowing-image {
    margin-top: 100px;
    cursor: pointer;
    border-radius: 35px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    box-shadow: 0 0 20px rgba(255, 180, 200, 0.7), 0 0 35px rgba(255, 140, 170, 0.5), 0 0 50px rgba(255, 100, 140, 0.3);
}

.glowing-image::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 45px;
    background: linear-gradient(45deg, rgba(255, 180, 200, 0.3), rgba(255, 140, 170, 0.5), rgba(255, 100, 140, 0.3));
    z-index: -1;
    filter: blur(20px);
    animation: glowMove 4s ease-in-out infinite alternate;
    opacity: 0.8;
}

.glowing-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 180, 200, 0.9), 0 0 50px rgba(255, 140, 170, 0.7), 0 0 75px rgba(255, 100, 140, 0.5);
}

#img1 { top: 60px; left: 30px; width: 310px; z-index: 1; }
#img2 { top: 60px; left: 470px; width: 310px; z-index: 1; }
#img3 { top: 60px; right: 220px; width: 310px; z-index: 1; }
#img4 { top: 400px; right: 450px; width: 300px; z-index: 1; }
#img5 { top: 400px; left: 240px; width: 300px; z-index: 1; }
#img6 { top: 400px; right: 30px; width: 300px; z-index: 1; }

.lap {
    height: 350px;
    width: auto;
    margin-top: -300px;
    position: absolute;
    left: 100px;
    transform: scaleX(-1);
    animation: gentlePawLeft 4s ease-in-out infinite;
    opacity: 0.6;
}

.lap2 {
    height: 350px;
    width: auto;
    margin-top: -300px;
    position: absolute;
    right: 100px;
    transform: scaleX(1);
    animation: gentlePawRight 4s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes gentlePawLeft {
    0%, 100% { transform: translateY(0) scaleX(-1) rotate(0deg); }
    50% { transform: translateY(-10px) scaleX(-1) rotate(-2deg); }
}

@keyframes gentlePawRight {
    0%, 100% { transform: translateY(0) scaleX(1) rotate(0deg); }
    50% { transform: translateY(-10px) scaleX(1) rotate(2deg); }
}

.tz {
    top: 350px;
    position: absolute;
    height: 200px;
    width: auto;
    left: 150px;
    animation: wind-sway 3s ease-in-out infinite;
}

@keyframes wind-sway {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-2px, -10px) rotate(-0.5deg); }
    66% { transform: translate(2px, -15px) rotate(0.3deg); }
}

.knopkaa {
    display: inline-block;
    padding: 16px 50px;
    background: #ffffff;
    color: #aa4e65;
    border: none;
    border-radius: 60px;
    font-size: 24px;
    font-family: "Coolvetica";
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 10px 0px rgba(105, 49, 63, 0.6);
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 780px;
    z-index: 1;
    white-space: nowrap;
}

.knopkaa:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 15px rgba(170, 78, 101, 0.5);
}

.darkpink2 {
    background: linear-gradient(to bottom, #aa4e65 0%, #aa4e65 55%, #e4899d 85%, #F5CDD3 100%);
    height: 900px;
    position: relative;
    top: 0px;
}

.y {
    font-size: 70px;
    font-family: "Czizh";
    position: absolute;
    color: #ffffff;
    left: 48%;
    transform: translateX(calc(-50% - 150px));
    top: 0px;
    white-space: nowrap;
}

.nn {
    font-size: 65px;
    font-family: "Coolvetica";
    position: absolute;
    color: #ffffff;
    left: 52%;
    transform: translateX(calc(-50% + 150px));
    top: -3px;
    white-space: nowrap;
}

.kosto4ka {
    height: 100px;
    width: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 90px;
}

.kn1, .kn2, .kn3, .kn4, .kn5 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 115px;
    background: #ffffff;
    color: #5B2B37;
    border: none;
    border-radius: 50px;
    font-size: 30px;
    font-family: "Coolvetica", sans-serif;
    transition: transform 0.3s ease;
    position: absolute;
    z-index: 1;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0px 0px 25px 10px #f5cdd3a7, 0px 0px 40px 15px #f5cdd3a8;
}

.kn1:hover, .kn2:hover, .kn3:hover, .kn4:hover, .kn5:hover {
    transform: scale(1.12);
    box-shadow: 0px 0px 35px 15px #F5CDD3, 0px 0px 60px 25px #f5cdd3b6;
}

.kn1 { left: 70px; top: 300px; }
.kn2 { left: 580px; top: 300px; }
.kn3 { right: 70px; top: 300px; }
.kn4 { right: 330px; top: 550px; }
.kn5 { left: 350px; top: 550px; }

.knopkaaaa {
    display: inline-block;
    padding: 16px 50px;
    background: #ffffff;
    color: #aa4e65;
    border: none;
    border-radius: 60px;
    font-size: 24px;
    font-family: "Coolvetica", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 10px 0px rgba(105, 49, 63, 0.6);
    text-decoration: none;
    margin-left: 595px;
    margin-top: 780px;
    z-index: 1;
}

.knopkaaaa:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(170, 78, 101, 0.5);
}

.pink2 {
    background: linear-gradient(to bottom, #F5CDD3 0%, #e4899d 85%, #aa4e65 100%);
    padding: 60px 0;
    position: relative;
    height: auto;
}

.o {
    font-family: "Coolvetica";
    font-size: 55px;
    color: #AA4E65;
    text-align: center;
    margin-bottom: 50px;
}

.review-card {
    background: #5B2B37;
    border-radius: 50px;
    padding: 35px 40px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 45px;
    flex-wrap: wrap;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.review-avatar {
    width: 170px;
    height: 170px;
    border-radius: 30px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255,180,200,0.4);
    cursor: pointer;
    transition: transform 0.3s;
}

.review-avatar:hover {
    transform: scale(1.03);
}

.review-info {
    flex: 1;
    min-width: 250px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.review-name {
    font-family: "Czizh";
    font-size: 48px;
    color: white;
}

.review-heart {
    width: 45px;
    height: auto;
}

.review-text {
    font-family: "Coolvetica";
    font-size: 22px;
    color: white;
    line-height: 1.45;
    margin-top: 8px;
}

.knopk2 {
    display: block;
    width: fit-content;
    margin: 50px auto 0;
    background: white;
    color: #5B2B37;
    padding: 16px 50px;
    border-radius: 60px;
    font-family: "Coolvetica";
    font-size: 24px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    box-shadow: 0px 5px 10px 0px rgba(105, 49, 63, 0.6);
}

.knopk2:hover {
    transform: scale(1.03);
    background: #f5e6e9;
}

.darkpink3 {
    background: linear-gradient(to bottom, #aa4e65 0%, #aa4e65 55%, #EFC1CB 85%, #F5CDD3 100%);
    height: 1000px;
    position: relative;
    z-index: 1;
}

.yvas {
    font-family: "Coolvetica";
    color: #FFFFFF;
    font-size: 50px;
    z-index: 2;
    position: absolute;
    top: 150px;
    left: 0px;
}

.vop {
    font-family: "Czizh";
    color: #FFFFFF;
    font-size: 60px;
    z-index: 2;
    position: absolute;
    top: 152px;
    left: 350px;
}

.razdel {
    font-family: "Coolvetica";
    color: #FFFFFF;
    font-size: 28px;
    z-index: 2;
    position: absolute;
    top: 240px;
    left: 0px;
    max-width: 700px;
    line-height: 1.4;
}

.knopk3 {
    display: inline-block;
    padding: 16px 50px;
    background: #ffffff;
    color: #aa4e65;
    border: none;
    border-radius: 60px;
    font-size: 24px;
    font-family: "Coolvetica";
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 10px 0px rgba(105, 49, 63, 0.6);
    text-decoration: none;
    position: absolute;
    left: 80%;
    transform: translateX(-50%);
    top: 390px;
    z-index: 1;
    white-space: nowrap;
}

.knopk3:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 15px rgba(170, 78, 101, 0.5);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(255, 180, 200, 0.6), 0 0 80px rgba(255, 140, 170, 0.4);
}

.close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffb4c8;
    font-size: 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.close:hover {
    transform: scale(1.2);
    color: #ffffff;
}

.avatar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.avatar-modal img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 30px;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(255,140,170,0.5);
}

.avatar-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    cursor: pointer;
}

@font-face {
    font-family: "Coolvetica";
    src: url("../fonts/Coolvetica.ttf") format("truetype");
}

@font-face {
    font-family: "Czizh";
    src: url("../fonts/Czizh.ttf") format("truetype");
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

.shimmer-dot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,220,230,0.9) 40%, rgba(255,200,210,0.5) 70%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 10;
    animation: shimmerBig 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255,200,210,0.8), 0 0 20px rgba(255,180,200,0.5);
}

@keyframes shimmerBig {
    0%, 100% { opacity: 0; transform: scale(0.2) translateY(0); }
    25% { opacity: 1; transform: scale(1.2) translateY(-8px); box-shadow: 0 0 15px rgba(255,220,230,1), 0 0 25px rgba(255,180,200,0.8); }
    50% { opacity: 0.7; transform: scale(0.8) translateY(3px); }
    75% { opacity: 0.9; transform: scale(1) translateY(-3px); }
}

.darkpink .dot-1 { top: 8%; left: 2%; width: 16px; height: 16px; animation-delay: 0s; }
.darkpink .dot-2 { top: 15%; right: 3%; width: 22px; height: 22px; animation-delay: 0.5s; }
.darkpink .dot-3 { top: 30%; left: 5%; width: 12px; height: 12px; animation-delay: 1s; }
.darkpink .dot-4 { top: 45%; right: 8%; width: 18px; height: 18px; animation-delay: 0.3s; }
.darkpink .dot-5 { top: 55%; left: 3%; width: 25px; height: 25px; animation-delay: 1.2s; }
.darkpink .dot-6 { top: 70%; right: 2%; width: 14px; height: 14px; animation-delay: 0.8s; }
.darkpink .dot-7 { top: 82%; left: 7%; width: 20px; height: 20px; animation-delay: 0.2s; }
.darkpink .dot-8 { top: 20%; left: 15%; width: 10px; height: 10px; animation-delay: 1.5s; }
.darkpink .dot-9 { top: 60%; left: 12%; width: 28px; height: 28px; animation-delay: 0.7s; }
.darkpink .dot-10 { top: 88%; right: 5%; width: 15px; height: 15px; animation-delay: 0.4s; }
.darkpink .dot-11 { top: 40%; left: 20%; width: 8px; height: 8px; animation-delay: 1.8s; }
.darkpink .dot-12 { top: 75%; left: 25%; width: 12px; height: 12px; animation-delay: 0.9s; }

.pink .dot-1 { top: 5%; left: 2%; width: 18px; height: 18px; animation-delay: 0.2s; }
.pink .dot-2 { top: 12%; right: 3%; width: 24px; height: 24px; animation-delay: 0.7s; }
.pink .dot-3 { top: 25%; left: 4%; width: 14px; height: 14px; animation-delay: 1.1s; }
.pink .dot-4 { top: 40%; right: 6%; width: 20px; height: 20px; animation-delay: 0.4s; }
.pink .dot-5 { top: 52%; left: 2%; width: 30px; height: 30px; animation-delay: 1.3s; }
.pink .dot-6 { top: 68%; right: 2%; width: 16px; height: 16px; animation-delay: 0.9s; }
.pink .dot-7 { top: 80%; left: 8%; width: 22px; height: 22px; animation-delay: 0.3s; }
.pink .dot-8 { top: 35%; left: 18%; width: 11px; height: 11px; animation-delay: 1.6s; }
.pink .dot-9 { top: 58%; left: 15%; width: 26px; height: 26px; animation-delay: 0.6s; }

.darkpink2 .dot-1 { top: 6%; left: 1%; width: 20px; height: 20px; animation-delay: 0.1s; }
.darkpink2 .dot-2 { top: 18%; right: 4%; width: 15px; height: 15px; animation-delay: 0.8s; }
.darkpink2 .dot-3 { top: 28%; left: 3%; width: 28px; height: 28px; animation-delay: 1.2s; }
.darkpink2 .dot-4 { top: 44%; right: 5%; width: 12px; height: 12px; animation-delay: 0.5s; }
.darkpink2 .dot-5 { top: 55%; left: 2%; width: 22px; height: 22px; animation-delay: 1.4s; }
.darkpink2 .dot-6 { top: 70%; right: 2%; width: 18px; height: 18px; animation-delay: 0.3s; }
.darkpink2 .dot-7 { top: 82%; left: 6%; width: 14px; height: 14px; animation-delay: 1s; }
.darkpink2 .dot-8 { top: 48%; left: 12%; width: 25px; height: 25px; animation-delay: 0.7s; }
.darkpink2 .dot-9 { top: 75%; left: 20%; width: 10px; height: 10px; animation-delay: 1.5s; }

.pink2 .dot-1 { top: 4%; left: 2%; width: 16px; height: 16px; animation-delay: 0.3s; }
.pink2 .dot-2 { top: 10%; right: 3%; width: 22px; height: 22px; animation-delay: 0.6s; }
.pink2 .dot-3 { top: 20%; left: 4%; width: 12px; height: 12px; animation-delay: 1s; }
.pink2 .dot-4 { top: 35%; right: 5%; width: 26px; height: 26px; animation-delay: 0.2s; }
.pink2 .dot-5 { top: 48%; left: 2%; width: 18px; height: 18px; animation-delay: 1.3s; }
.pink2 .dot-6 { top: 62%; right: 2%; width: 30px; height: 30px; animation-delay: 0.8s; }
.pink2 .dot-7 { top: 78%; left: 5%; width: 14px; height: 14px; animation-delay: 0.4s; }
.pink2 .dot-8 { top: 30%; left: 15%; width: 20px; height: 20px; animation-delay: 1.1s; }
.pink2 .dot-9 { top: 70%; left: 18%; width: 24px; height: 24px; animation-delay: 0.9s; }

.darkpink3 .dot-1 { top: 8%; left: 3%; width: 18px; height: 18px; animation-delay: 0.2s; }
.darkpink3 .dot-2 { top: 20%; right: 4%; width: 25px; height: 25px; animation-delay: 0.7s; }
.darkpink3 .dot-3 { top: 32%; left: 2%; width: 14px; height: 14px; animation-delay: 1.2s; }
.darkpink3 .dot-4 { top: 48%; right: 3%; width: 20px; height: 20px; animation-delay: 0.5s; }
.darkpink3 .dot-5 { top: 60%; left: 5%; width: 28px; height: 28px; animation-delay: 1.4s; }
.darkpink3 .dot-6 { top: 75%; right: 2%; width: 16px; height: 16px; animation-delay: 0.3s; }
.darkpink3 .dot-7 { top: 85%; left: 7%; width: 22px; height: 22px; animation-delay: 0.9s; }
.darkpink3 .dot-8 { top: 42%; left: 12%; width: 12px; height: 12px; animation-delay: 1.6s; }
.darkpink3 .dot-9 { top: 65%; left: 20%; width: 18px; height: 18px; animation-delay: 0.4s; }

.sparkle-star {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    animation: sparkleTwinkle 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(255,200,210,0.8));
}

@keyframes sparkleTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.2) rotate(0deg); }
    30% { opacity: 1; transform: scale(1.2) rotate(180deg); }
    60% { opacity: 0.6; transform: scale(0.8) rotate(90deg); }
}

.darkpink .star-1 { top: 12%; left: 25%; width: 10px; height: 10px; animation-delay: 0.3s; }
.darkpink .star-2 { top: 35%; right: 15%; width: 7px; height: 7px; animation-delay: 1s; }
.darkpink .star-3 { bottom: 25%; left: 18%; width: 12px; height: 12px; animation-delay: 0.7s; }
.darkpink .star-4 { top: 65%; right: 25%; width: 6px; height: 6px; animation-delay: 1.5s; }

.pink .star-1 { top: 15%; left: 20%; width: 9px; height: 9px; animation-delay: 0.5s; }
.pink .star-2 { top: 45%; right: 12%; width: 11px; height: 11px; animation-delay: 1.2s; }
.pink .star-3 { bottom: 35%; left: 22%; width: 8px; height: 8px; animation-delay: 0.8s; }

.darkpink2 .star-1 { top: 10%; left: 28%; width: 10px; height: 10px; animation-delay: 0.4s; }
.darkpink2 .star-2 { top: 50%; right: 18%; width: 8px; height: 8px; animation-delay: 1.1s; }
.darkpink2 .star-3 { bottom: 20%; left: 15%; width: 9px; height: 9px; animation-delay: 0.6s; }

.pink2 .star-1 { top: 8%; left: 12%; width: 7px; height: 7px; animation-delay: 0.9s; }
.pink2 .star-2 { top: 55%; right: 20%; width: 10px; height: 10px; animation-delay: 0.3s; }
.pink2 .star-3 { bottom: 45%; left: 30%; width: 6px; height: 6px; animation-delay: 1.3s; }

.darkpink3 .star-1 { top: 22%; left: 18%; width: 8px; height: 8px; animation-delay: 0.6s; }
.darkpink3 .star-2 { top: 58%; right: 22%; width: 10px; height: 10px; animation-delay: 1.4s; }
.darkpink3 .star-3 { bottom: 30%; left: 25%; width: 7px; height: 7px; animation-delay: 0.2s; }

@media (max-width: 1024px) {
    .darkpink .container { flex-direction: column; justify-content: center; gap: 40px; }
    .left-content { justify-content: center; }
    .right-content { align-items: center; text-align: center; }
    .ost { margin-top: 0; font-size: 42px; }
    .slub { font-size: 48px; }
    .darkpink { height: auto; min-height: 900px; padding-bottom: 50px; }
    .pink { height: auto; padding-bottom: 100px; }
    .n, .k { position: relative; left: auto; transform: none; text-align: center; white-space: normal; }
    .k { top: auto; margin-bottom: 30px; }
    .glowing-image { position: relative !important; top: auto !important; left: auto !important; right: auto !important; margin: 15px auto !important; display: block; width: 280px !important; }
    .lap, .lap2 { width: 120px; height: auto; bottom: 20px; margin-top: 0; }
    .knopkaa { position: relative; left: auto; transform: none; top: auto; margin: 40px auto; display: block; width: fit-content; white-space: normal; }
    .darkpink2 { height: auto; padding-bottom: 60px; }
    .y, .nn { position: relative; left: auto; transform: none; text-align: center; white-space: normal; }
    .y { font-size: 50px; }
    .nn { font-size: 45px; top: auto; margin-top: 10px; }
    .kosto4ka { position: relative; margin: 20px auto; top: auto; }
    .kn1, .kn2, .kn3, .kn4, .kn5 { position: relative; left: auto; right: auto; top: auto; margin: 15px auto; display: block; width: 260px; }
    .knopkaaaa { position: relative; left: auto; margin: 30px auto; display: block; width: fit-content; margin-left: auto; margin-right: auto; }
    .darkpink3 { height: auto; padding: 80px 0; }
    .yvas, .vop, .razdel { position: relative; left: auto; top: auto; text-align: center; white-space: normal; }
    .vop { left: auto; }
    .knopk3 { position: relative; left: auto; transform: none; top: auto; margin: 30px auto; display: block; width: fit-content; }
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .video-card { width: 90%; height: auto; margin: 30px auto 0 auto; }
    .ost { font-size: 32px; margin-top: 0; }
    .slub { font-size: 36px; }
    .knopka { font-size: 20px; padding: 12px 30px; white-space: normal; }
    .review-card { flex-direction: column; text-align: center; padding: 25px; gap: 20px; }
    .review-header { justify-content: center; }
    .review-avatar { width: 130px; height: 130px; }
    .review-name { font-size: 32px; }
    .review-heart { width: 35px; }
    .review-text { font-size: 18px; }
    .knopk2 { width: 90%; font-size: 20px; padding: 12px 25px; }
    .y { font-size: 45px; }
    .nn { font-size: 40px; }
    .yvas { font-size: 36px; }
    .vop { font-size: 42px; }
    .razdel { font-size: 20px; }
    .lap, .lap2, .tz { display: none; }
    .knopkaa, .knopkaaaa, .knopk3 { font-size: 20px; padding: 12px 30px; white-space: normal; width: 90%; text-align: center; }
    .shimmer-dot, .sparkle-star { display: none !important; }
}

@media (max-width: 480px) {
    .ost { font-size: 24px; }
    .slub { font-size: 28px; }
    .knopka { font-size: 16px; padding: 10px 20px; }
    .review-avatar { width: 100px; height: 100px; }
    .review-name { font-size: 26px; }
    .review-text { font-size: 16px; }
    .review-heart { width: 30px; }
    .knopk2 { font-size: 18px; padding: 10px 20px; }
    .y { font-size: 36px; }
    .nn { font-size: 32px; }
    .kn1, .kn2, .kn3, .kn4, .kn5 { width: 220px; height: 90px; font-size: 20px; }
    .yvas { font-size: 28px; }
    .vop { font-size: 32px; }
    .razdel { font-size: 16px; }
    .knopk3 { font-size: 18px; padding: 10px 25px; }
}