.dialect-border {
    border: 2px solid #E65C19;
    border-radius: 10px;
    padding: 10px;
    background: rgba(230, 92, 25, 0.05);
}

/* ==================== 新增心理钩子样式 ==================== */

/* 1. 热区按钮 - 贪+怕钩子 */
.hotzone-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FF6B6B 100%);
    color: white;
    font-weight: bold;
    border: none;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
}

.hotzone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

.hotzone-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.hotzone-btn:hover::after {
    opacity: 1;
}

/* 2. 成功状态按钮 */
.success-state {
    background: linear-gradient(135deg, var(--success-color) 0%, #4CAF50 100%);
    color: white;
    cursor: default;
}

.success-state:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* 3. 解锁状态按钮 */
.unlocked-state {
    background: linear-gradient(135deg, #8A2BE2 0%, #4A00E0 100%);
    color: white;
    cursor: default;
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
}

.unlocked-state:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
}

/* 4. 次要操作按钮样式 */
.secondary-action-btn {
    background: linear-gradient(135deg, #666 0%, #888 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.secondary-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 5. 主要操作按钮样式 */
.primary-action-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5C00E0 100%);
    color: white;
    border: none;
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

.primary-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.6);
}

/* 6. 迷你按钮样式 */
.mini-btn {
    padding: 6px 15px;
    font-size: 0.85rem;
    background: rgba(138, 43, 226, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    transition: all 0.3s;
}

.mini-btn:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: translateY(-1px);
}

/* 7. 高亮文本增强 */
.highlight {
    background: linear-gradient(120deg, rgba(255, 214, 102, 0.3) 0%, transparent 100%);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--secondary-color);
    font-weight: bold;
}

/* 8. 动态提示样式增强 */
.hint {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    transition: color 0.3s;
}

.hint strong {
    color: inherit;
    font-weight: bold;
}

/* 9. 进度条样式 */
.progress-container {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* 10. 奖励消息样式 */
.reward-message {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 11. 示例展开区域增强 */
.example-box p {
    padding: 10px 15px;
    margin: 8px 0;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.example-box p:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateX(5px);
}
/* ==================== 日期选择器优化样式 ==================== */
.quick-date-buttons {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.quick-date-buttons .btn-secondary {
    padding: 6px 12px;
    font-size: 0.9rem;
    border-radius: 20px;
    flex-grow: 1;
    min-width: 60px;
    text-align: center;
}

/* 价格陷阱设计样式 */
.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.price-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.recommend-stars {
    font-size: 1.2rem;
    color: #FFD700;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.price-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.price-final {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-discount {
    background: var(--secondary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: bold;
}

.scarcity-hint {
    font-size: 0.9rem;
    margin: 5px 0;
    padding: 5px 10px;
    background: rgba(255, 101, 132, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--secondary-color);
}

#discount-timer {
    font-family: monospace;
    font-weight: bold;
    color: var(--secondary-color);
}

/* 幽默语音播报按钮 */
.humor-voice-btn {
    background: linear-gradient(135deg, #FF9A00 0%, #FF6B6B 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    margin: 15px auto;
    width: 100%;
    max-width: 300px;
}

.humor-voice-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

.humor-voice-btn:active {
    transform: translateY(0);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .quick-date-buttons .btn-secondary {
        min-width: 50px;
        font-size: 0.85rem;
        padding: 5px 10px;
    }
    
    .price-final {
        font-size: 1.8rem;
    }
}

/* ==================== 盲盒系统样式 ==================== */

/* 盲盒卡片样式 */
#blindbox-section {
    animation: fadeInUp 0.6s ease;
}

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

/* 盲盒解锁按钮样式 */
#unlock-blindbox-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#unlock-blindbox-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

#unlock-blindbox-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#unlock-blindbox-btn:active::before {
    width: 300px;
    height: 300px;
}

/* 盲盒进度条样式 */
#blindbox-progress {
    position: relative;
    transition: width 1s ease;
}

#blindbox-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* 隐藏内容区域样式 */
#hidden-content-section {
    animation: fadeInContent 1s ease;
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 盲盒开启动画样式 */
.box-opening {
    animation: boxOpen 1.5s ease;
}

@keyframes boxOpen {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    30% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 星星闪烁效果 */
.fa-star {
    animation: starTwinkle 3s infinite;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* 盲盒徽章样式 */
.blindbox-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF9A00, #FF6B6B);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 8px;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* 盲盒解锁效果 */
.unlock-effect {
    position: relative;
}

.unlock-effect::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: sparkle 1s ease;
}

@keyframes sparkle {
    0% {
        transform: translateX(-50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translateX(-50%) scale(1.5);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0;
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    #blindbox-section {
        padding: 15px;
        margin-top: 15px;
    }
    
    .blindbox-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}
