:root {
    /* Light mode (پیش‌فرض) */
    --bg-primary: #f5f7fb;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #eef2ff;
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
    --tab-bg: #ffffff;
    --tab-inactive: #64748b;
    --tab-active: #f59e0b;
    --gradient-start: #fbbf24;
    --gradient-end: #f59e0b;
    --skeleton-bg: #e2e8f0;
}
/* غیرفعال کردن انتخاب متن در کل سایت */
/* ===== غیرفعال کردن انتخاب متن در کل سایت ===== */
* {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* استثنا: اجازه کپی در فیلدهای خاص (در صورت نیاز) */
input, textarea {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

/* استثنا: اجازه کپی در فیلدهای خاص (در صورت نیاز) */
input, textarea {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --border-color: #334155;
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --tab-bg: #1e293b;
    --tab-inactive: #94a3b8;
    --tab-active: #f59e0b;
    --skeleton-bg: #334155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI Emoji', 'Apple Color Emoji', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 20px 12px 40px;
    transition: background 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

/* Header */
header {
    margin-bottom: 24px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

h1 i {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #f59e0b;
}

.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(15deg);
    background: var(--tab-active);
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.refresh-btn {
    background: var(--tab-active);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.refresh-btn:hover {
    background: #d97706;
    transform: scale(0.98);
}

.refresh-btn:active {
    transform: scale(0.95);
}

.update-badge {
    background: var(--bg-secondary);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: var(--tab-bg);
    padding: 6px;
    border-radius: 60px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--tab-inactive);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 1rem;
}

.tab-btn.active {
    background: var(--tab-active);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    transform: translateY(-1px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 20px 18px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.card h2 {
    font-size: 1.3rem;
    font-weight: 600;
    border-right: 4px solid var(--tab-active);
    padding-right: 12px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card h2 i {
    color: var(--tab-active);
    font-size: 1.2rem;
}

/* Items list */
.items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    transition: all 0.2s ease;
}

.price-item:hover {
    background: var(--bg-primary);
    padding: 10px 8px;
    border-radius: 12px;
    margin: 0 -8px;
}

.item-name {
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.item-price {
    font-weight: 700;
    color: var(--text-primary);
    direction: ltr;
    font-size: 1rem;
}

/* تغییرات رنگ‌ها */
.change-up {
    color: #10b981 !important;
    background: rgba(16, 185, 129, 0.15) !important;
}
.change-down {
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.15) !important;
}
.change-stable {
    color: var(--text-secondary) !important;
    background: var(--bg-primary) !important;
}

.item-change,
.currency-change {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

/* دو ستونه برای ارزها */
.currencies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.currency-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.currency-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--tab-active);
}

.currency-name {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.currency-name span {
    font-size: 1.2rem;
}

.currency-price {
    font-weight: 800;
    font-size: 1rem;
    direction: ltr;
    color: var(--text-primary);
}

.currency-details {
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Loading skeleton */
.loading-skeleton {
    background: linear-gradient(90deg, var(--skeleton-bg) 25%, var(--bg-primary) 50%, var(--skeleton-bg) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 12px;
    height: 60px;
    margin: 10px 0;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Footer */
footer {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

footer a {
    color: var(--tab-active);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    text-decoration: underline;
}

footer i {
    margin: 0 4px;
}

/* Responsive */
@media (max-width: 550px) {
    .currencies-grid {
        grid-template-columns: 1fr;
    }
    .card {
        padding: 16px;
    }
    h1 {
        font-size: 1.4rem;
    }
    .header-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .refresh-btn, .update-badge {
        justify-content: center;
    }
}

/* ========== استایل Toast برای پیام کپی ========== */
.toast-message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    direction: rtl;
}

.toast-message.show {
    transform: translateX(-50%) translateY(0);
}

.toast-message.toast-success {
    border-right: 4px solid #10b981;
}

.toast-message.toast-success i {
    color: #10b981;
}

.toast-message.toast-error {
    border-right: 4px solid #ef4444;
}

.toast-message.toast-error i {
    color: #ef4444;
}

/* ========== افکت hover روی کارت ارزها ========== */
.currency-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.currency-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--tab-active);
}

.currency-card:active {
    transform: scale(0.98);
}

.copy-icon {
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.currency-card:hover .copy-icon {
    opacity: 1;
    color: var(--tab-active);
}

/* ========== بقیه استایل‌های قبلی شما ========== */
/* ... (بقیه کدهای CSS شما اینجا می‌آید) ... */
/* ========== استایل کلیک‌پذیر برای طلا و سکه ========== */
.clickable {
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 12px;
    padding: 8px;
    margin: 0 -8px;
}

.clickable:hover {
    background: var(--bg-primary);
    transform: translateX(4px);
}

.clickable:active {
    transform: scale(0.98);
}

/* ========== استایل Toast برای پیام کپی ========== */
.toast-message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    direction: rtl;
}

.toast-message.show {
    transform: translateX(-50%) translateY(0);
}

.toast-message.toast-success {
    border-right: 4px solid #10b981;
}

.toast-message.toast-success i {
    color: #10b981;
}

.toast-message.toast-error {
    border-right: 4px solid #ef4444;
}

.toast-message.toast-error i {
    color: #ef4444;
}

/* ========== افکت hover روی کارت ارزها ========== */
.currency-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.currency-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--tab-active);
}

.currency-card:active {
    transform: scale(0.98);
}

.copy-icon {
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.currency-card:hover .copy-icon {
    opacity: 1;
    color: var(--tab-active);
}

/* ========== بقیه استایل‌های قبلی شما ========== */
/* ... (بقیه کدهای CSS شما اینجا می‌آید) ... */
/* ========== دکمه کپی جدول ========== */
.copy-table-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    background: var(--tab-active);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.copy-table-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.copy-table-btn:active {
    transform: translateY(0);
}

/* ========== استایل کلیک‌پذیر برای طلا و سکه ========== */
.clickable {
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 12px;
    padding: 8px;
    margin: 0 -8px;
}

.clickable:hover {
    background: var(--bg-primary);
    transform: translateX(4px);
}

.clickable:active {
    transform: scale(0.98);
}

/* ========== استایل Toast برای پیام کپی ========== */
.toast-message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    direction: rtl;
}

.toast-message.show {
    transform: translateX(-50%) translateY(0);
}

.toast-message.toast-success {
    border-right: 4px solid #10b981;
}

.toast-message.toast-success i {
    color: #10b981;
}

.toast-message.toast-error {
    border-right: 4px solid #ef4444;
}

.toast-message.toast-error i {
    color: #ef4444;
}

/* ========== افکت hover روی کارت ارزها ========== */
.currency-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.currency-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--tab-active);
}

.currency-card:active {
    transform: scale(0.98);
}

/* ========== بقیه استایل‌های قبلی شما ========== */
/* ... (بقیه کدهای CSS شما اینجا می‌آید) ... */

/* اضافه کنید به انتهای فایل style.css موجود */

.crypto-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    background: #f0f0f0;
    padding: 2px;
    margin-left: 8px;
}

[data-theme="dark"] .crypto-icon {
    background: #334155;
}

/* استایل مخصوص ارزهای دیجیتال */
.crypto-card {
    padding: 14px;
}

.crypto-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 8px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 6px;
}

.price-label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.price-value {
    font-weight: 700;
    direction: ltr;
    font-family: monospace;
    font-size: 0.9rem;
}

.symbol {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-right: 4px;
}

.crypto-card .item-change {
    font-size: 0.7rem;
    padding: 2px 6px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: var(--bg-card);
    margin: 5% auto;
    padding: 20px;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 1200px;
    border-radius: 16px;
    position: relative;
}

.close {
    color: var(--text-secondary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--tab-active);
}

#candlestick-chart {
    height: 500px;
    width: 100%;
    margin-top: 20px;
}

.timeframe-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tf-btn {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.tf-btn:hover, .tf-btn.active {
    background: var(--tab-active);
    color: white;
    border-color: var(--tab-active);
}

#candleCanvas {
    background: var(--bg-card);
    border-radius: 12px;
    width: 100%;
    height: 400px;
}
/* بهبود مودال نمودار */
.modal-content {
    background: var(--bg-card);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 20px;
    max-width: 1100px;
    width: 95%;
}

#candlestick-chart {
    height: 500px;
    width: 100%;
    margin-top: 20px;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
}

.timeframe-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.tf-btn {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-primary);
}

.tf-btn:hover {
    background: var(--tab-active);
    color: white;
    border-color: var(--tab-active);
    transform: translateY(-2px);
}

.tf-btn.active {
    background: var(--tab-active);
    color: white;
    border-color: var(--tab-active);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border-right: 4px solid #ef4444;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    color: var(--text-primary);
    font-weight: 500;
}

/* اطمینان از خوانایی ابزارک ApexCharts در دارک مود */
.apexcharts-text,
.apexcharts-title-text,
.apexcharts-legend-text {
    fill: var(--text-primary) !important;
    color: var(--text-primary) !important;
}

.apexcharts-tooltip {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

/* دکمه نمودار در کارت ارزهای دیجیتال */
.chart-btn {
    width: 100%;
    margin-top: 12px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--tab-active);
    border-radius: 12px;
    color: var(--tab-active);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.chart-btn:hover {
    background: var(--tab-active);
    color: white;
    transform: translateY(-2px);
}

/* استایل خطا در نمودار */
.error-message {
    background: rgba(239, 68, 68, 0.1);
    border-right: 4px solid #ef4444;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    color: var(--text-primary);
}

/* تنظیمات مودال نمودار */
.modal-content {
    max-width: 1100px;
    width: 95%;
    background: var(--bg-card);
    border-radius: 24px;
}

#candlestick-chart {
    min-height: 450px;
    width: 100%;
}
/* استایل مودال نمودار */
.modal-content {
    max-width: 1100px;
    width: 95%;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 20px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.chart-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.currency-toggle-btn {
    background: var(--tab-active);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.currency-toggle-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* دکمه‌های تایم‌فریم - مرتب‌سازی بهتر */
.timeframe-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.tf-btn {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-primary);
}

.tf-btn:hover {
    background: var(--tab-active);
    color: white;
    border-color: var(--tab-active);
}

.tf-btn.active {
    background: var(--tab-active);
    color: white;
    border-color: var(--tab-active);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* دکمه نمودار در کارت ارزها */
.chart-btn {
    width: 100%;
    margin-top: 12px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--tab-active);
    border-radius: 12px;
    color: var(--tab-active);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.chart-btn:hover {
    background: var(--tab-active);
    color: white;
    transform: translateY(-2px);
}

#candlestick-chart {
    min-height: 450px;
    width: 100%;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border-right: 4px solid #ef4444;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    color: var(--text-primary);
}

.currency-buy-sell {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    margin: 5px 0;
}
.currency-buy-sell .buy-price {
    color: #3b82f6;
}
.currency-buy-sell .sell-price {
    color: #10b981;
}
/* ====================== استایل جدید کارت ارزها (خرید و فروش) ====================== */
.currency-buy-sell {
    display: flex;
    gap: 18px;
    font-size: 0.92rem;
    margin: 10px 0 6px;
    flex-wrap: wrap;
}

.currency-buy-sell .buy-price {
    color: #10b981 !important;          /* سبز برای خرید */
    font-weight: 700;
    font-size: 1.05rem;
}

.currency-buy-sell .sell-price {
    color: #ef4444 !important;            /* قرمز برای فروش */
    font-weight: 700;
    font-size: 1.05rem;
}

/* کارت‌های رنگ‌بندی شده (خرید و فروش) */
.currency-card.buy-sell {
    border: 1.5px solid #e2e8f0;
    padding: 14px;
}

.dark .currency-card.buy-sell {
    border-color: #334155;
}

/* افکت hover قوی‌تر برای کارت‌های رنگ‌بندی شده */
.currency-card.buy-sell:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.25);
    border-color: var(--tab-active);
}

/* رنگ‌های خاص روی کارت */
.currency-card.buy-sell .buy-price { color: #10b981 !important; }
.currency-card.buy-sell .sell-price { color: #ef4444 !important; }
