.pardis-currency-ticker-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(25, 7, 229, 0.2);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(25, 7, 229, 0.1);
}

.ticker-title {
    text-align: center;
    margin: 0 0 25px 0;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #1907e5, #4c3bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.currency-ticker-buttons {
    display: flex;
    gap: 20px;
}

.currency-ticker-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(25, 7, 229, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(25, 7, 229, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.currency-ticker-btn:hover {
    border-color: #1907e5;
    background: rgba(25, 7, 229, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 7, 229, 0.2);
}

.currency-ticker-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(25, 7, 229, 0.2));
    transition: all 0.3s ease;
}

.currency-ticker-btn:hover .currency-ticker-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(25, 7, 229, 0.3));
}

.currency-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.currency-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.currency-rates {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(25, 7, 229, 0.1);
    padding: 6px 10px;
    border-radius: 6px;
}

.rate-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.rate-value {
    font-size: 14px;
    font-weight: 700;
    color: #1907e5;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .pardis-currency-ticker-wrapper {
        margin: 0 15px;
        padding: 20px;
        border-radius: 15px;
    }
    
    .ticker-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .currency-ticker-buttons {
        gap: 15px;
    }
    
    .currency-ticker-btn {
        padding: 18px 15px;
        min-height: 110px;
    }
    
    .currency-ticker-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 10px;
    }
    
    .currency-name {
        font-size: 14px;
    }
    
    .currency-rate {
        font-size: 16px;
        padding: 6px 10px;
        min-width: 90px;
    }
}

@media (max-width: 480px) {
    .pardis-currency-ticker-wrapper {
        margin: 0 10px;
        padding: 15px;
    }
    
    .ticker-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .currency-ticker-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .currency-ticker-btn {
        padding: 15px;
        min-height: 90px;
        flex-direction: row;
        text-align: right;
        justify-content: space-between;
    }
    
    .currency-ticker-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 0;
        margin-left: 10px;
    }
    
    .currency-info {
        align-items: flex-start;
        gap: 4px;
        flex: 1;
    }
    
    .currency-name {
        font-size: 13px;
    }
    
    .currency-rate {
        font-size: 15px;
        padding: 4px 8px;
        min-width: 80px;
    }
}