* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ЦЕНТР */
.card {
    background: white;
    padding: 40px 45px;
    border-radius: 24px;
    text-align: center;
    width: 420px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.25);
    z-index: 2;
}

.heart {
    font-size: 60px;
    animation: pulse 1.5s infinite;
}

h1 {
    color: #ff4d6d;
    margin: 20px 0 15px;
}

p {
    min-height: 60px;
    color: #555;
    margin-bottom: 20px;
    transition: opacity 0.3s;
}

/* КНОПКА */
button {
    border: none;
    background: #ff4d6d;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #e63b5d;
    transform: scale(1.05);
    cursor: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 64 64'>\
<path d='M32 56C10 36 4 26 4 18 4 10 10 4 18 4c6 0 10 4 14 8 4-4 8-8 14-8 8 0 14 6 14 14 0 8-6 18-28 38z' fill='%23ff5c8a'/>\
</svg>") 16 16, pointer;
}

button:active {
    cursor: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 64 64'>\
<path d='M32 58C8 34 2 24 2 16 2 8 8 2 16 2c7 0 12 5 16 10 4-5 9-10 16-10 8 0 14 6 14 14 0 8-6 18-30 42z' fill='%23ff2f6f'/>\
</svg>") 16 16, pointer;
}

/* ПЛЕЕР */
.player {
    margin-top: 30px;
    background: #fff5f8;
    border-radius: 18px;
    padding: 18px;
    box-shadow: inset 0 0 0 2px #ffd6e3;
}

.player-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #ff4d6d;
    margin-bottom: 10px;
}

.progress-container {
    height: 8px;
    background: #ffd6e3;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff4d6d, #ff7eb3);
}

.play-btn {
    margin-top: 15px;
    padding-left: 23px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 22px;
    background: linear-gradient(135deg, #ff4d6d, #ff7eb3);
    box-shadow: 0 10px 25px rgba(255,77,109,0.4);
}

/* КОЛЛАЖИ */
.side-collage {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.side-collage.left { left: 30px; }
.side-collage.right { right: 30px; }

.side-collage img {
    width: 400px;
    height: 350px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.side-collage img:hover {
    transform: scale(1.06);
}

/* АНИМАЦИИ */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
