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

body {
    font-family: "Microsoft YaHei", sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.heart-image {
    margin-bottom: 30px;
    padding: 10px;
}

.heart-gif {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.heart-gif:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(231, 76, 60, 0.3);
}

h1 {
    color: #e74c3c;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 300;
}

.message {
    color: #666;
    line-height: 1.6;
}

.message p {
    margin-bottom: 10px;
}

.sub-message {
    font-size: 0.9em;
    color: #888;
    font-style: italic;
}

/* 音乐播放器样式 */
.music-player {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.player-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.play-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ff5e62;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 94, 98, 0.4);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 94, 98, 0.5);
}

.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 4px;
}

.play-button.playing .play-icon {
    width: 16px;
    height: 16px;
    border: none;
    background-color: #ffffff;
    margin-left: 0;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.progress-circle {
    transform: rotate(-90deg);
}

.progress-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 4;
}

.progress-circle-fg {
    fill: none;
    stroke: #ffcc00;
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

.music-title {
    font-size: 0.9em;
    color: #e74c3c;
    font-weight: bold;
    margin-top: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
    .content {
        padding: 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .heart-gif {
        width: 100px;
        height: 100px;
    }
}
