.fortune-stage {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
}

.fortune-tube-wrap {
    position: relative;
    width: 140px;
    height: 220px;
}

.fortune-tube {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #8b5a2b 0%, #6b3f1f 45%, #4a2a12 100%);
    border-radius: 12px 12px 18px 18px;
    box-shadow: inset 0 -12px 24px rgba(0, 0, 0, 0.35), 0 12px 28px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.fortune-tube::before {
    content: '';
    position: absolute;
    inset: 8px 10px auto;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, #3d2410 0%, #1a0f08 100%);
    z-index: 2;
}

.fortune-tube-label {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: #f5deb3;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    z-index: 3;
}

.fortune-sticks-inner {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 160px;
    overflow: hidden;
    z-index: 1;
}

.fortune-bamboo {
    position: absolute;
    left: 50%;
    width: 10px;
    height: 72px;
    margin-left: -5px;
    background: linear-gradient(90deg, #d4b896, #f0e0c8, #c9a66b);
    border-radius: 3px;
    font-size: 8px;
    color: #5c3d1e;
    writing-mode: vertical-rl;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.fortune-falling-stick {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 14px;
    height: 100px;
    margin-left: -7px;
    background: linear-gradient(90deg, #e8d4b0, #fff8e8, #d9bc82);
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 5;
    font-size: 9px;
    color: #5c3d1e;
    writing-mode: vertical-rl;
    text-align: center;
    padding-top: 8px;
    font-weight: 700;
}

.fortune-desk {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 16px;
    background: linear-gradient(180deg, #a67c52, #7a5535);
    border-radius: 8px;
    opacity: 0;
}

.fortune-type-btn--active,
.fortune-cat-btn--active {
    border-color: #b45309 !important;
    background: #fff7ed !important;
    color: #9a3412 !important;
}

.fortune-level--gold { color: #b45309; background: #fffbeb; border-color: #fcd34d; }
.fortune-level--orange { color: #c2410c; background: #fff7ed; border-color: #fdba74; }
.fortune-level--amber { color: #b45309; background: #fffbeb; border-color: #fde68a; }
.fortune-level--blue { color: #1d4ed8; background: #eff6ff; border-color: #93c5fd; }
.fortune-level--slate { color: #475569; background: #f8fafc; border-color: #cbd5e1; }
.fortune-level--gray { color: #64748b; background: #f1f5f9; border-color: #cbd5e1; }

.fortune-report-card {
    transform: translateY(24px);
    opacity: 0;
}

.fortune-report-card.is-visible {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.6s ease;
    box-shadow: 0 20px 40px rgba(180, 83, 9, 0.12);
}

.fortune-history-item {
    border-left: 3px solid #f59e0b;
}
