/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础样式 */
body {
    font-family: 'Noto Serif SC', 'Microsoft YaHei', 'SimHei', serif;
    background: linear-gradient(135deg, #8B0000 0%, #B20000 20%, #CC0000 40%, #E60000 60%, #FF0000 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    color: #fff;
}

/* 高级背景效果 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(255, 215, 0, 0.03) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255, 215, 0, 0.03) 50%, transparent 51%);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 1;
}

/* 滑动容器 */
.slide-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
}

/* 幻灯片 */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 20;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
}

/* 幻灯片内容 */
.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

/* 主标题 */
.title-decoration {
    margin-bottom: 30px;
}

.title-decoration h1 {
    color: #FFD700;
    font-size: clamp(3.5rem, 12vw, 6rem);
    font-weight: 900;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 215, 0, 0.6);
    margin: 0;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.slogan {
    color: #FFD700;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0 0 60px 0;
    letter-spacing: 8px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* 马的形象 */
.horse-display {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
    position: relative;
    animation: fadeInUp 1s ease-out 1s both;
}

.horse-display::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseEffect 3s ease-in-out infinite;
}

.horse-icon {
    font-size: clamp(10rem, 25vw, 15rem);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    animation: horseGallop 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    position: relative;
    z-index: 2;
}

/* 灯笼效果 */
.lanterns-container {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
    z-index: 5;
    pointer-events: none;
}

.lantern {
    font-size: clamp(3rem, 8vw, 5rem);
    animation: lanternSwing 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}

.lantern.left {
    animation-delay: 0s;
}

.lantern.right {
    animation-delay: 1s;
}

/* 流动祝福文字 */
.floating-words-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-word {
    position: absolute;
    color: rgba(255, 215, 0, 0.6);
    font-size: clamp(0.8rem, 2vw, 1.5rem);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    animation: floatWord linear infinite;
    opacity: 0.7;
}

/* 寄语部分装饰 */
.message-decoration {
    font-size: clamp(2.5rem, 6vw, 4rem);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.message-decoration.top {
    margin-bottom: 40px;
    animation-delay: 0s;
}

.message-decoration.bottom {
    margin-top: 40px;
    animation-delay: 1.5s;
}

/* 单个寄语 */
.message-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: clamp(15px, 3vh, 30px);
    padding: 0 20px;
}

.message-text {
    color: #FFD700;
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 900;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 215, 0, 0.6);
    line-height: 1.3;
    max-width: 95%;
    animation: fadeInUp 0.8s ease-out, textGlow 2s ease-in-out infinite alternate;
    word-break: break-word;
    hyphens: auto;
}

.message-subtext {
    color: #FFD700;
    font-size: clamp(1.4rem, 5vw, 2.5rem);
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 215, 0, 0.5);
    line-height: 1.4;
    max-width: 90%;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    word-break: break-word;
    hyphens: auto;
}

/* 标题样式 */
.section-title {
    color: #FFD700;
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.3);
    margin-bottom: clamp(30px, 5vh, 60px);
    animation: fadeInUp 0.8s ease-out;
    text-align: center;
    max-width: 95%;
}

/* 愿望输入内容 */
.wish-input-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(25px, 4vh, 40px);
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
    padding: 0 20px;
}

.wish-prompt {
    color: #FFD700;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
    line-height: 1.5;
    max-width: 95%;
}

.wish-input-area {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 3vw, 20px);
    flex-wrap: wrap;
    width: 100%;
}

.wish-input {
    padding: clamp(18px, 3vw, 25px) clamp(20px, 4vw, 35px);
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    width: clamp(280px, 80vw, 500px);
    outline: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    font-family: 'Noto Serif SC', serif;
}

.wish-input:focus {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.9), 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: scale(1.03);
    border-color: #FFD700;
}

.send-wish-btn {
    padding: clamp(18px, 3vw, 25px) clamp(25px, 5vw, 45px);
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    border: none;
    border-radius: 50px;
    color: #8B0000;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    font-family: 'Noto Serif SC', serif;
    white-space: nowrap;
}

.send-wish-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

/* 愿望墙 - 普通列表显示 */
.wishes-list-container {
    width: 90%;
    max-width: 800px;
    height: 60vh;
    max-height: 500px;
    overflow-y: auto;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.6);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.4),
        inset 0 0 30px rgba(255, 215, 0, 0.05);
    padding: 20px;
    will-change: transform;
}

/* 自定义滚动条 */
.wishes-list-container::-webkit-scrollbar {
    width: 8px;
}

.wishes-list-container::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
}

.wishes-list-container::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 4px;
}

.wishes-list-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.8);
}

/* 愿望列表 */
.wishes-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 单个愿望卡片 */
.wish-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 12px;
    padding: 12px 18px;
    color: #FFD700;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    line-height: 1.5;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wish-card:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.8);
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

/* 愿望编号 */
.wish-number {
    display: inline-block;
    background: rgba(255, 215, 0, 0.3);
    color: #FFD700;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-right: 10px;
}

/* 空状态提示 */
.wishes-empty {
    text-align: center;
    color: rgba(255, 215, 0, 0.8);
    font-size: 1.3rem;
    padding: 60px 20px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* 愿望统计 */
.wishes-stats {
    text-align: center;
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 滑动指示器 */
.slide-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: pulse 2s infinite;
    pointer-events: none;
}

.slide-indicator p {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
}

.down-arrow, .up-arrow {
    color: #FFD700;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: bounce 2s infinite;
}

/* 导航指示器 */
.nav-indicators {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 30;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-dot:hover {
    background: rgba(255, 215, 0, 0.8);
    transform: scale(1.2);
}

.nav-dot.active {
    background: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.8);
}

/* 背景装饰容器 */
.background-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.fireworks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
}

.dots-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 215, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 7;
}

/* 现代装饰元素 */
.modern-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8;
}

/* 几何圆形装饰 */
.geometric-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-duration: 20s;
}

/* 渐变光球 */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: pulseOrb 4s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 100, 100, 0.5) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: 1s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.5) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: 2s;
}

/* 粒子容器 */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    animation: particleFloat 15s linear infinite;
}

/* 光线效果 */
.light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 215, 0, 0.05) 49%, rgba(255, 215, 0, 0.1) 50%, rgba(255, 215, 0, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 215, 0, 0.05) 49%, rgba(255, 215, 0, 0.1) 50%, rgba(255, 215, 0, 0.05) 51%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(255, 215, 0, 0.03) 49%, rgba(255, 215, 0, 0.08) 50%, rgba(255, 215, 0, 0.03) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(255, 215, 0, 0.03) 49%, rgba(255, 215, 0, 0.08) 50%, rgba(255, 215, 0, 0.03) 51%, transparent 52%);
    background-size: 200px 200px, 200px 200px, 300px 300px, 300px 300px;
    animation: lightRayMove 20s linear infinite;
    z-index: 8;
}

/* 动画 */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseOrb {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

@keyframes lightRayMove {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 200px 200px, -200px 200px, 300px 0, 0 300px;
    }
}

@keyframes pulseEffect {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

@keyframes horseGallop {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg) scale(1.05);
    }
    75% {
        transform: translateY(-20px) rotate(5deg) scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

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

@keyframes textGlow {
    from {
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 215, 0, 0.6);
    }
    to {
        text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255, 215, 0, 0.8);
    }
}

@keyframes lanternSwing {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes floatWord {
    0% {
        transform: translateY(100vh) translateX(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(1.2);
        opacity: 0;
    }
}

@keyframes floatWish {
    0% {
        transform: translateY(100%) translateX(0) scale(0.9);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(200px) scale(1.1);
        opacity: 0;
    }
}

/* 愿望提交按钮点击动画 */
.send-wish-btn.clicked {
    animation: wishSubmit 0.6s ease-out;
}

@keyframes wishSubmit {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.1);
        box-shadow: 0 15px 45px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
    }
    60% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .slide-content {
        padding: 15px;
    }
    
    .title-decoration h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
    
    .slogan {
        font-size: clamp(1.1rem, 4vw, 1.6rem);
        margin-bottom: 30px;
        letter-spacing: 4px;
    }
    
    .horse-icon {
        font-size: clamp(7rem, 22vw, 10rem);
    }
    
    .lanterns-container {
        padding: 0 30px;
        top: 30px;
    }
    
    .lantern {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }
    
    .message-decoration {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .message-decoration.top {
        margin-bottom: 20px;
    }
    
    .message-decoration.bottom {
        margin-top: 20px;
    }
    
    .message-single {
        min-height: 250px;
        gap: 12px;
    }
    
    .message-text {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
        line-height: 1.2;
    }
    
    .message-subtext {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        line-height: 1.3;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 25px;
    }
    
    .wish-prompt {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }
    
    .wish-input {
        padding: 18px 22px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 350px;
    }
    
    .send-wish-btn {
        padding: 18px 28px;
        font-size: 1.1rem;
    }
    
    .floating-wishes-container {
        width: 95%;
        height: 55vh;
        max-height: 400px;
        padding: 15px;
    }
    
    .floating-wish {
        font-size: clamp(0.75rem, 3vw, 1rem);
        padding: 6px 12px;
    }
    
    .slide-indicator {
        bottom: 30px;
    }
    
    .slide-indicator p {
        font-size: 1rem;
    }
    
    .down-arrow, .up-arrow {
        font-size: 1.5rem;
    }
    
    .nav-indicators {
        right: 15px;
        gap: 8px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
    
    /* 现代装饰在手机上简化 */
    .geometric-circle {
        opacity: 0.5;
    }
    
    .circle-1 {
        width: 150px;
        height: 150px;
    }
    
    .circle-2 {
        width: 100px;
        height: 100px;
    }
    
    .circle-3 {
        width: 80px;
        height: 80px;
    }
    
    .gradient-orb {
        opacity: 0.3;
    }
    
    .orb-1 {
        width: 200px;
        height: 200px;
    }
    
    .orb-2 {
        width: 150px;
        height: 150px;
    }
    
    .orb-3 {
        width: 120px;
        height: 120px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 375px) {
    .title-decoration h1 {
        font-size: 2rem;
    }
    
    .slogan {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .message-text {
        font-size: 1.6rem;
    }
    
    .message-subtext {
        font-size: 1.1rem;
    }
    
    .horse-icon {
        font-size: 6rem;
    }
    
    .floating-wishes-container {
        height: 50vh;
    }
}