/* 圓角與過渡效果優化 */
.card {
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 獲勝方案樣式 */
.winner {
    border-color: #10b981;
    background-color: #f0fdf4 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.1);
}

/* Range Input 顏色自定義 */
input[type="range"] {
    accent-color: #2563eb;
}

/* 最省錢標籤漸層 */
.discount-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 響應式微調 */
@media (max-width: 640px) {
    .text-3xl {
        font-size: 1.5rem;
    }
}