.dl-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    user-select: none;
}

.dl-lantern {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 0 40px rgba(255, 60, 0, 0.2));
    animation: dl-dangle 4s ease-in-out infinite;
}

@keyframes dl-dangle {
    0%, 100% { transform: rotate(-1deg); }
    50% { transform: rotate(1deg); }
}

.dl-top, .dl-bottom {
    width: 100px;
    height: 14px;
    background: linear-gradient(180deg, #c8923a 0%, #a07028 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(160, 100, 30, 0.3);
    flex-shrink: 0;
}

.dl-top {
    border-radius: 4px 4px 0 0;
}

.dl-bottom {
    border-radius: 0 0 4px 4px;
}

.dl-body {
    width: clamp(120px, 22vw, 180px);
    height: clamp(160px, 28vw, 240px);
    background: radial-gradient(ellipse at 50% 40%, #e83020 0%, #c02018 40%, #a01810 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 -20px 40px rgba(0, 0, 0, 0.2),
        inset 0 20px 40px rgba(255, 100, 50, 0.15),
        0 0 60px rgba(255, 40, 0, 0.15),
        0 0 120px rgba(255, 40, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.dl-body::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 18px,
        rgba(255, 200, 100, 0.04) 18px,
        rgba(255, 200, 100, 0.04) 20px
    );
    pointer-events: none;
}

.dl-body::after {
    content: '';
    position: absolute;
    top: 8%;
    left: 12%;
    right: 50%;
    bottom: 60%;
    background: radial-gradient(ellipse, rgba(255, 255, 200, 0.1) 0%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
}

.dl-time {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    color: #ffe8a0;
    text-shadow:
        0 0 8px rgba(255, 200, 50, 0.3),
        0 0 20px rgba(255, 150, 0, 0.2);
    letter-spacing: 0.08em;
    z-index: 1;
    font-family: "STKaiti", "KaiTi", "Noto Serif SC", "Helvetica Neue", sans-serif;
}

.dl-tassel {
    width: 2px;
    height: 30px;
    background: #c8923a;
    position: relative;
}

.dl-tassel::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: -5px;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 40% 40%, #e83020 0%, #a01810 100%);
    border-radius: 50%;
}

.dl-label {
    font-family: "STKaiti", "KaiTi", "Noto Serif SC", serif;
    font-size: clamp(11px, 1.4vw, 14px);
    color: #b05030;
    letter-spacing: 0.2em;
    margin-top: 8px;
}
