/* 到达目标日期后的毛玻璃样式 */
.glass-card.arrived {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 背景图片层 */
.glass-card.arrived::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/hand_in_hand.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* 毛玻璃遮罩层 */
.glass-card.arrived::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

/* 内容区域样式 */
.glass-card.arrived > * {
    position: relative;
    z-index: 3;
}

/* 到达时的标题文字样式 */
.glass-card.arrived h2 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 6px;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* 隐藏倒计时网格 */
.glass-card.arrived .grid {
    display: none !important;
}

/* 隐藏其他元素 */
.glass-card.arrived #couple-names,
.glass-card.arrived #romantic-quote,
.glass-card.arrived .text-\[10px\] {
    display: none;
}

/* 添加淡入动画 */
@keyframes glassArrivalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.glass-card.arrived {
    animation: glassArrivalFadeIn 1.5s ease-out;
}
